Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-04-10 | Muse writer: escape > less often | Alexander Krotov | 1 | -3/+3 | |
> should be escaped only when it can start verse, i.e., at the beginning of the line. | |||||
2018-04-01 | Muse writer: only escape brackets when necessary | Alexander Krotov | 1 | -6/+6 | |
It includes cases when they can be mistaken for footnotes and links, as well as inside link description. | |||||
2018-03-31 | Muse writer: do not escape list markers unless preceded by space | Alexander Krotov | 1 | -2/+2 | |
2018-03-28 | Muse writer: escape semicolons and markers after line break | Alexander Krotov | 1 | -1/+1 | |
2018-03-25 | Muse writer: escape ordered list markers | Alexander Krotov | 1 | -2/+2 | |
Also reduced amount of <verbatim> tags in output to avoid escaping every "-" and word that ends in a full stop. | |||||
2018-03-21 | Muse writer: don't align ordered list items | Alexander Krotov | 1 | -3/+3 | |
It leads to problems with round-trip test, because aligned line blocks can't be read back. | |||||
2018-03-07 | Muse writer: escape "-" to avoid creating bullet lists | Alexander Krotov | 1 | -1/+1 | |
2018-03-02 | Muse writer: update writer.muse | Alexander Krotov | 1 | -1/+1 | |
2018-02-15 | Muse writer: use unicode quotes for quoted text | Alexander Krotov | 1 | -8/+8 | |
2018-01-30 | Muse writer: don't wrap displayMath into <verse> | Alexander Krotov | 1 | -1/+1 | |
<verse> is a block tag and displayMath is an inline element. Writing <verse> around displayMath could result in nested <verse> tags. | |||||
2018-01-19 | Muse writer: support definitions with multiple descriptions | Alexander Krotov | 1 | -8/+5 | |
Muse reader does not support this syntax yet, but Emacs Muse parses it correctly. | |||||
2017-11-22 | Muse writer: escape hash symbol | Alexander Krotov | 1 | -1/+1 | |
2017-11-22 | Muse writer: escape only </code> inside code tag | Alexander Krotov | 1 | -9/+6 | |
Additional <verbatim> is not needed as <code> is verbatim already. | |||||
2017-08-08 | Muse writer: update test results (#3845) | Alexander | 1 | -3/+6 | |
2017-07-12 | Muse writer: indent lists inside <quote> with at least one space (#3795) | Alexander Krotov | 1 | -3/+3 | |
2017-05-25 | Added `spaced_reference_links` extension. | John MacFarlane | 1 | -4/+0 | |
This is now the default for pandoc's Markdown. It allows whitespace between the two parts of a reference link: e.g. [a] [b] [b]: url This is now forbidden by default. Closes #2602. | |||||
2017-05-04 | Muse writer: omit automatic header identifiers (#3633) | Alexander Krotov | 1 | -40/+0 | |
2017-03-10 | Add Muse writer (#3489) | Alexander Krotov | 1 | -0/+772 | |
* Add Muse writer * Advertise new Muse writer * Muse writer: add regressions tests |