mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2026-08-08 12:48:53 +00:00
The point is that there may be another character in the string.
For example, a space or a line break.
Because we check the whole string, not the first 4 characters - we can ignore the variant where it can be "----\s" or "----\r\n" and make the wrong markup.
Alternatively: use `startsWith("----")`, but this is a bit more expensive operation.