Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-09-13 | Fix hlint suggestions, update hlint.yaml (#6680) | Christian Despres | 1 | -1/+1 | |
* Fix hlint suggestions, update hlint.yaml Most suggestions were redundant brackets. Some required LambdaCase. The .hlint.yaml file had a small typo, and didn't ignore camelCase suggestions in certain modules. | |||||
2020-04-28 | Support new Underline element in readers and writers (#6277) | Vaibhav Sagar | 1 | -2/+1 | |
Deprecate `underlineSpan` in Shared in favor of `Text.Pandoc.Builder.underline`. | |||||
2020-04-15 | Use the new builders, modify readers to preserve empty headers | despresc | 1 | -74/+46 | |
The Builder.simpleTable now only adds a row to the TableHead when the given header row is not null. This uncovered an inconsistency in the readers: some would unconditionally emit a header filled with empty cells, even if the header was not present. Now every reader has the conditional behaviour. Only the XWiki writer depended on the header row being always present; it now pads its head as necessary. | |||||
2020-04-15 | Adapt to the newest Table type, fix some previous adaptation issues | despresc | 1 | -30/+46 | |
- Writers.Native is now adapted to the new Table type. - Inline captions should now be conditionally wrapped in a Plain, not a Para block. - The toLegacyTable function now lives in Writers.Shared. | |||||
2020-04-15 | Implement the new Table type | despresc | 1 | -28/+50 | |
2020-03-13 | Update copyright year (#6186) | Albert Krewinkel | 1 | -1/+1 | |
* Update copyright year * Copyright: add notes for Lua and Jira modules | |||||
2019-10-15 | Muse reader: do not allow closing asterisks to be followed by "*" | Alexander Krotov | 1 | -3/+23 | |
2019-10-15 | Muse reader: do not split series of asterisks into symbols and emphasis | Alexander Krotov | 1 | -0/+8 | |
Fixes #5821 | |||||
2019-10-15 | Muse reader: do not terminate emphasis on "*" not followed by space | Alexander Krotov | 1 | -0/+4 | |
2019-10-04 | hlint Muse reader tests | Alexander Krotov | 1 | -1/+1 | |
2019-07-14 | Muse: add RTL support | Alexander Krotov | 1 | -0/+3 | |
Closes #5551 | |||||
2019-06-09 | Muse reader: test that links inside image descriptions work | Alexander Krotov | 1 | -0/+3 | |
2019-05-25 | Muse reader: allow images inside link descriptions | Alexander Krotov | 1 | -0/+3 | |
2019-02-18 | Muse reader: add secondary note support | Alexander Krotov | 1 | -0/+17 | |
2019-02-06 | Muse reader: test that block level markup does not break <verbatim> | Alexander Krotov | 1 | -0/+7 | |
2019-02-04 | Add missing copyright notices and remove license boilerplate (#5112) | Albert Krewinkel | 1 | -0/+11 | |
Quite a few modules were missing copyright notices. This commit adds copyright notices everywhere via haddock module headers. The old license boilerplate comment is redundant with this and has been removed. Update copyright years to 2019. Closes #4592. | |||||
2018-12-25 | Muse reader tests: test #cover directive | Alexander Krotov | 1 | -0/+5 | |
2018-11-14 | Muse reader: trim whitespace before parsing grid table cells | Alexander Krotov | 1 | -0/+11 | |
2018-11-14 | Muse reader: add grid tables support | Alexander Krotov | 1 | -0/+43 | |
2018-10-28 | Muse: Make tables round-trip | Alexander Krotov | 1 | -2/+16 | |
2018-10-28 | Muse reader: try to parse lists before trying to parse table | Alexander Krotov | 1 | -0/+12 | |
This ensures that tables inside lists are parsed correctly. | |||||
2018-10-27 | Remove misleading comment from Muse reader tests | Alexander Krotov | 1 | -1/+0 | |
pandoc follows Text::Amuse rules instead of being bug compatible with Emacs Muse | |||||
2018-10-27 | Muse reader: forbid whitespace after opening and before closing markup elements | Alexander Krotov | 1 | -2/+10 | |
See https://github.com/melmothx/text-amuse/issues/44 for discussion on these rules | |||||
2018-10-26 | Muse reader: parse page breaks | Alexander Krotov | 1 | -0/+8 | |
2018-10-22 | Muse reader: allow footnotes to start with empty line | Alexander Krotov | 1 | -0/+17 | |
A space character was required after footnote marker, now newline is allowed. | |||||
2018-10-21 | Muse reader: allow empty headers | Alexander Krotov | 1 | -0/+7 | |
Previously empty headers caused parser to terminate without parsing the rest of the document. | |||||
2018-10-17 | Muse reader: allow examples to be indented with tabs | Alexander Krotov | 1 | -0/+8 | |
2018-10-17 | Muse reader: remove indentation from examples indicated by {{{ and }}} | Alexander Krotov | 1 | -0/+6 | |
2018-10-15 | Only override --quickcheck-tests=N if N is not default value (100). | John MacFarlane | 1 | -1/+6 | |
Some of the round-trip tests are set to do a maximum of 25 trials when the default value is given. Closes #4956. | |||||
2018-10-10 | Test that Muse reader can parse code with = sign inside | Alexander Krotov | 1 | -0/+2 | |
(fixed by previous commit) | |||||
2018-10-10 | Muse reader: fix parsing of empty cells | Alexander Krotov | 1 | -0/+11 | |
2018-10-05 | Muse reader: allow table caption to contain "+" | Alexander Krotov | 1 | -0/+8 | |
2018-09-27 | HTML, Muse reader tests: reduce time taken by round-trip test. | John MacFarlane | 1 | -1/+1 | |
2018-09-22 | Muse reader tests: more tests | Alexander Krotov | 1 | -0/+12 | |
Check that indented blocks that end in self-terminating blocks (such as block tags and verse) can be terminated by paragraphs. | |||||
2018-09-21 | Muse reader: do not allow code markup to be followed by digit | Alexander Krotov | 1 | -0/+4 | |
2018-09-11 | Muse reader tests: accept Blocks instead of Block in round trip test | Alexander Krotov | 1 | -2/+2 | |
This way testcase can be shrinked better up to removing all blocks completely. | |||||
2018-09-06 | Muse reader: close the </quote> in indented tag test | Alexander Krotov | 1 | -1/+2 | |
There is already a separate test for unclosed </quote>. | |||||
2018-09-04 | Remove redundant $ | Alexander Krotov | 1 | -1/+1 | |
2018-09-02 | Muse reader: autonumber sections in the correct order | Alexander Krotov | 1 | -0/+12 | |
Parsing now stops at each section header to ensure the header is registered before parsing of the next section starts. | |||||
2018-09-02 | Muse reader: allow newline after opening "*" or "**" | Alexander Krotov | 1 | -0/+8 | |
Emacs Muse allows this. | |||||
2018-08-31 | Muse reader: parse <verse> tag in one pass | Alexander Krotov | 1 | -0/+6 | |
instead of using parseFromString. This change makes it possible to have verbatim </verse> tag inside verse. | |||||
2018-08-30 | Fix a typo: s/afeter/after/ | Alexander Krotov | 1 | -1/+1 | |
2018-08-12 | Muse reader: don't allow digits after closing marker in lightweight markup | Alexander Krotov | 1 | -0/+4 | |
This change makes reader more compatible with Emacs Muse | |||||
2018-05-31 | Muse reader: add support for floating images | Alexander Krotov | 1 | -0/+6 | |
2018-05-31 | Muse reader: add support for images with specified width | Alexander Krotov | 1 | -0/+6 | |
2018-05-30 | Muse reader: parse image URLs without "guard" and "takeExtension" | Alexander Krotov | 1 | -0/+3 | |
2018-05-27 | Muse reader: test image with space in filename | Alexander Krotov | 1 | -0/+3 | |
2018-04-26 | Muse reader: allow nested footnotes | Alexander Krotov | 1 | -0/+9 | |
2018-04-19 | Muse reader: allow "-" in anchors | Alexander Krotov | 1 | -0/+5 | |
2018-04-16 | Muse reader: allow verse to be indented | Alexander Krotov | 1 | -0/+18 | |
Muse writer indents verse blocks in definition list more than necessary, so Muse reader should parse them. |