- https://craftinginterpreters.com/contents.html - Book
- https://github.com/rulex-rs/pomsky - regex alternative
- https://rosie-lang.org/ - another regex alternative, based on PEGs
+ - https://tratt.net/laurie/blog/2020/which_parsing_approach.html - which parsing approach?
*** DCGs/Prolog
- https://en.wikipedia.org/wiki/Definite_clause_grammar
- https://github.com/mthom/scryer-prolog/
- https://github.com/nvim-neorg
- https://github.com/podlite/podlite/
- https://orgmode.org/
+
+## Creating your own formats
+
+https://github.com/spc476/MOPML someone created its own lightweight format using Lua and PEGs.
+
+https://tratt.net/laurie/blog/2020/which_parsing_approach.html has information about choosing parsing approaches.