Skip to content

Commit 9184688

Browse files
committed
Improve readability
1 parent 3af4aa8 commit 9184688

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
* [As a repo owner](#as-a-repo-owner)
1313
* [As a contributor](#as-a-contributor)
1414
* [Common issues](#common-issues)
15+
* [Strings](#strings)
16+
* [Data structure accessors](#data-structure-accessors)
17+
* [Macros](#macros)
1518

1619
## About
1720

@@ -72,15 +75,15 @@ python3 format-gml.py
7275

7376
Since js-beautify is a JavaScript formatter, it doesn't work properly on GameMaker Language in all cases.
7477

75-
1. Strings `@""` and `$""`
78+
### Strings
7679

77-
Handled automatically inside of `format-gml.py` by removing all whitespace between characters `@`/`$` and `"`.
80+
Strings `@""` and `$""` are handled automatically inside of `format-gml.py` by removing all whitespace between characters `@`/`$` and `"`.
7881

79-
2. Data structure accessors
82+
### Data structure accessors
8083

8184
Handled automatically inside of `format-gml.py` by removing all whitespace between characters `[` and `@`/`|`/`#`/`?`/`$`.
8285

83-
3. `#macro`s
86+
### Macros
8487

8588
Currently the only fix for those is to surround them with `/* beautify ignore:start */` and `/* beautify ignore:end */` like so:
8689

@@ -95,4 +98,6 @@ Currently the only fix for those is to surround them with `/* beautify ignore:st
9598
/* beautify ignore:end */
9699
```
97100
101+
--------------------------------------------------------------------------------
102+
98103
If you find more, please let us know via an issue or contact us on our Discord server (link at the top).

0 commit comments

Comments
 (0)