DOCUMENTATION: Use alternative fix for newline issue in IPvGO docs (#2350)

This commit is contained in:
catloversg
2025-10-16 01:58:11 +07:00
committed by GitHub
parent 30a572cfe6
commit cb5b80a6d5
6 changed files with 78 additions and 27 deletions

View File

@@ -4935,13 +4935,19 @@ export interface Go {
*
* For example, a 5x5 board might look like this:
*
[<br/>
"XX.O.",<br/>
"X..OO",<br/>
".XO..",<br/>
"XXO.#",<br/>
".XO.#",<br/>
]
*[
*
* "XX.O.",
*
* "X..OO",
*
* ".XO..",
*
* "XXO.#",
*
* ".XO.#",
*
*]
*
* Each string represents a vertical column on the board, and each character in the string represents a point.
*
@@ -4961,13 +4967,19 @@ export interface Go {
*
* For example, a single 5x5 prior move board might look like this:
*
[<br/>
"XX.O.",<br/>
"X..OO",<br/>
".XO..",<br/>
"XXO.#",<br/>
".XO.#",<br/>
]
*[
*
* "XX.O.",
*
* "X..OO",
*
* ".XO..",
*
* "XXO.#",
*
* ".XO.#",
*
*]
*/
getMoveHistory(): string[][];