Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-16 | Require OTP-21+ and remove erlang:get_stacktrace/0 usageHEADmaster | Loïc Hoguin | |
2020-03-28 | Test against OTP-20+ | Loïc Hoguin | |
2019-03-08 | Only test Windows on OTP-21+ to avoid weird failures | Loïc Hoguin | |
2019-03-06 | Use mklink on Windows for the groff tests | Loïc Hoguin | |
This fixes errors due to long paths I get in BuildKite. | |||
2018-08-16 | Fix warnings evidenced by the groff tests | Loïc Hoguin | |
2018-08-16 | Run groff against projects that use Asciideck for their manual | Loïc Hoguin | |
2018-06-08 | Rewrite the project | Loïc Hoguin | |
The new code is much more readable and easier to extend. I took inspiration from Haskell's Parsec project which seems to only write the happy-path and applied the idea to Erlang's exceptions. When the parser tries to parse, say, a list, and crashes, it tries with a table next, and so on until something matches. Normal paragraphs always match so there can be no parsing failures. The parser now has a number of passes: first the block parser, then lists and tables passes to build a proper tree out of them and finally an inline pass to apply inline formatting. The resulting AST can then be modified at will and passed on to translator modules which output a different format. The man page translator was also rewritten and has been tested against both Cowboy and Gun. Numerous issues were fixed as a result of this rewrite. | |||
2016-11-05 | Add HiPE and ErLLVM testing | Loïc Hoguin | |
2016-11-01 | Add CI | Loïc Hoguin | |
2016-11-01 | Fix version number and add .app file | Loïc Hoguin | |
2016-10-17 | Initial commit | Loïc Hoguin | |
This is still very much in a proof of concept state, though the project should be in a good enough state that future additions are relatively painless. Text formatting nodes are not using the proper form in the AST at the moment. They should not be relied upon just yet. |