Use '_' instead of '.' for numbering cosmo escapes

because it gets syntax highlighted weird because '.' is not valid for
like a variable name so the syntax highlighter is splitting the escape
phrase at the '.' which means that phrase won't match when unescaped so
it fails to get unescaped

for example, this would fail:

```
 $$ct
```
This commit is contained in:
2025-06-25 21:10:23 -07:00
parent c26453415d
commit 766c9bad62
2 changed files with 5 additions and 4 deletions

View File

@@ -398,11 +398,14 @@ Edit Makefile:
--add-host=git.domain.abc=$(loopback) \
Rebuild image:
```console
$ make image-rm image-build
```
Run tests:
```console
$ make test
●●●●