Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-09-02 | Muse writer: use lightweight markup when possible | Alexander Krotov | 1 | -39/+36 | |
2018-08-15 | Markdown reader: Use "tex" instead of "latex" for raw tex-ish content. | John MacFarlane | 1 | -1/+1 | |
We can't always tell if it's LaTeX, ConTeXt, or plain TeX. Better just to use "tex" always. Also changed: ConTeXt writer: now outputs raw "tex" blocks as well as "context". (Closes #969). RST writer: uses ".. raw:: latex" for "tex" content. (RST doesn't support raw context anyway.) Note that if "context" or "latex" specifically is desired, you can still force that in a markdown document by using the raw attribute (see MANUAL.txt): ```{=latex} \foo ``` Note that this change may affect some filters, if they assume that raw tex parsed by the Markdown reader will be RawBlock (Format "latex"). In most cases it should be trivial to modify the filters to accept "tex" as well. | |||||
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 |