Skip to content

Commit

Permalink
Modify readme
Browse files Browse the repository at this point in the history
  • Loading branch information
marek.piotrowski committed Aug 4, 2023
1 parent 2fb234d commit bff36b4
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,30 @@ int main() {
}
```

[^1]: Tried creating a pull request in the original repository, but I doubt it's ever going to be considered.
[^2]: If you look closely at the new macro, it's relatively easy to figure out how to actually *avoid* using the macro, but I need to document that to make it officially supported.

This is then going to produce a JSON file like this:

```
{
/* comment两两 */
"property1": 1,
/* multiline */
/* comment2 */
"property2": 2.5,
/* comment3 */
"property3": "test",
/* comment4 */
"property4": {
"x": 1,
"y": 2
},
/* comment5 */
"property5": [
1.5,
5.4,
3.2
]
}
```

[^1]: Tried creating a pull request in the original repository, but I doubt it's ever going to be considered.
[^2]: If you look closely at the new macro, it's relatively easy to figure out how to actually *avoid* using the macro, but I need to document that to make it officially supported.

0 comments on commit bff36b4

Please sign in to comment.