Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove json tag in code block #201

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -641,14 +641,11 @@ Tasks data are saved automatically in a text (.txt) file `<JAR file location>/da

The format of the saved game in the storage file is as follows:

```json
```java
[CURRENT_PLAYER_COLOR] // Either BLACK or WHITE
[GAME_DIFFICULTY] // Integer from 1 - 3
[NEXT_TURN_COLOR] // Either BLACK or WHITE
[GAME_DIFFICULTY] // Integer from 1 to 3
[HUMAN_MOVE_HISTORY] // delimited by ','
[CPU_MOVE_HISTORY] // delimited by ','
[CHESS_BOARD_PIECE] // Next 8 lines of 8 characters each
[hasMoved_FLAGS] // Next 8 lines of 8 characters each
```

## FAQ
Expand Down
Loading