Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-05-13 | Implement curly-brace syntax for Markdown citation keys. | John MacFarlane | 1 | -2/+7 | |
The change provides a way to use citation keys that contain special characters not usable with the standard citation key syntax. Example: `@{foo_bar{x}'}` for the key `foo_bar{x}`. Closes #6026. The change requires adding a new parameter to the `citeKey` parser from Text.Pandoc.Parsing [API change]. Markdown reader: recognize @{..} syntax for citatinos. Markdown writer: use @{..} syntax for citations when needed. Update manual with curly-brace syntax for citations. Closes #6026. | |||||
2021-03-19 | Protect partial uses of maximum with NonEmpty. | John MacFarlane | 1 | -6/+3 | |
2021-03-02 | Split up T.P.Writers.Markdown... | John MacFarlane | 2 | -0/+682 | |
with T.P.Writers.Markdown.Types and T.P.Writers.Markdown.Inline. The module was difficult to compile on low-memory system.s |