Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-04-26 | Muse reader: allow nested footnotes | Alexander Krotov | 1 | -1/+1 | |
2018-04-26 | Muse reader: use Data.Map.member instead of lookup | Alexander Krotov | 1 | -3/+3 | |
2018-04-19 | Muse reader: allow "-" in anchors | Alexander Krotov | 1 | -1/+1 | |
2018-04-16 | Muse reader: allow verse to be indented | Alexander Krotov | 1 | -0/+1 | |
Muse writer indents verse blocks in definition list more than necessary, so Muse reader should parse them. | |||||
2018-04-16 | Muse reader code cleanup | Alexander Krotov | 1 | -20/+9 | |
2018-04-15 | Muse reader: don't allow footnote references inside links | Alexander Krotov | 1 | -0/+2 | |
2018-04-15 | Muse reader: allow URL to be empty | Alexander Krotov | 1 | -1/+1 | |
Muse writer can write links with empty URLs, so Muse reader should read them. | |||||
2018-04-15 | Muse reader: require that comment semicolons are in the first column | Alexander Krotov | 1 | -0/+1 | |
Fixes #4551 | |||||
2018-04-09 | Muse reader: add support for Text:Amuse multiline headings | Alexander Krotov | 1 | -9/+33 | |
2018-04-09 | Muse reader: remove redundant brackets | Alexander Krotov | 1 | -1/+1 | |
2018-04-08 | Muse reader: replace foldl with foldr | Alexander Krotov | 1 | -7/+7 | |
2018-04-08 | Muse reader: move F out of MuseTableElement definition | Alexander Krotov | 1 | -31/+23 | |
2018-04-08 | Muse reader: document implementation | Alexander Krotov | 1 | -93/+136 | |
2018-04-07 | Muse reader: replace pattern matching with "when" | Alexander Krotov | 1 | -7/+5 | |
2018-04-07 | Muse reader: don't return link title from linkText parser | Alexander Krotov | 1 | -6/+6 | |
Title is always empty in Muse anyway. | |||||
2018-04-07 | Muse reader: add support for <biblio> and <play> tags | Alexander Krotov | 1 | -2/+15 | |
2018-04-07 | Muse reader: replace returnF with return . return | Alexander Krotov | 1 | -1/+1 | |
2018-04-03 | Muse reader: code cleanup | Alexander Krotov | 1 | -34/+17 | |
2018-04-03 | Muse reader: rewrite museOrderedListMarker without "do" | Alexander Krotov | 1 | -10/+9 | |
2018-04-03 | Muse reader: refactor parseAnchor | Alexander Krotov | 1 | -3/+1 | |
2018-04-03 | Muse reader: rewrite parseDirectiveKey without do | Alexander Krotov | 1 | -3/+1 | |
2018-04-02 | Muse reader: add <math> tag support | Alexander Krotov | 1 | -0/+5 | |
2018-04-02 | Muse writer: place header IDs before header | Alexander Krotov | 1 | -2/+2 | |
See https://github.com/melmothx/text-amuse/issues/39 | |||||
2018-03-26 | Cleanup Muse reader and writer | Alexander Krotov | 1 | -37/+19 | |
2018-03-25 | Muse reader: allow links to have empty descriptions | Alexander Krotov | 1 | -1/+1 | |
2018-03-25 | Muse reader: require block <literal> tags to be on separate lines | Alexander Krotov | 1 | -2/+8 | |
2018-03-18 | Use NoImplicitPrelude and explicitly import Prelude. | John MacFarlane | 1 | -0/+2 | |
This seems to be necessary if we are to use our custom Prelude with ghci. Closes #4464. | |||||
2018-03-12 | Muse reader: make parseBlocks similar to parseBlocksTill | Alexander Krotov | 1 | -4/+4 | |
2018-03-12 | Muse reader: require closing tag to have the same indentation as opening | Alexander Krotov | 1 | -1/+2 | |
2018-03-12 | Muse reader: do not reparse blocks inside unclosed block tag | Alexander Krotov | 1 | -4/+4 | |
Fixes #4425 | |||||
2018-03-10 | Muse reader: parse <class> tag | Alexander Krotov | 1 | -0/+8 | |
<class> tag is supported by Emacs Muse | |||||
2018-03-07 | Muse reader: do not produce empty Str element for unindented verse lines | Alexander Krotov | 1 | -2/+3 | |
2018-03-03 | Muse reader: fix indentation requirements for footnote continuations | Alexander Krotov | 1 | -2/+2 | |
2018-03-02 | hlint Muse reader and writer | Alexander Krotov | 1 | -2/+2 | |
2018-03-02 | Muse reader: enable <literal> tags even if amuse extension is enabled | Alexander Krotov | 1 | -2/+0 | |
Amusewiki disables <literal> tags for security reasons. If user wants similar behavior in pandoc, RawBlocks and RawInlines can be removed or replaced with filters. | |||||
2018-03-02 | Muse reader: remove space prefix from <literal> tag contents | Alexander Krotov | 1 | -6/+3 | |
2018-03-02 | Muse reader: do not consume whitespace while looking for closing end tag | Alexander Krotov | 1 | -1/+1 | |
Fix for a bug caught by round-trip test. | |||||
2018-02-28 | Muse reader: allow <quote> and other tags to be indented | Alexander Krotov | 1 | -2/+3 | |
2018-02-24 | Muse reader: allow single colon in definition list term | Alexander Krotov | 1 | -1/+1 | |
2018-02-23 | Muse reader: improve verse parsing | Alexander Krotov | 1 | -1/+2 | |
Now verse marked up with ">" (in contrast to <verse> tag) can be placed inside lists. | |||||
2018-02-21 | Muse reader: replace setState with updateState where possible | Alexander Krotov | 1 | -18/+9 | |
2018-02-20 | Muse reader: fix compiler warning | Jesse Rosenthal | 1 | -1/+1 | |
lambda variable `st` shadowed an existing variable. | |||||
2018-02-20 | Muse reader: use updateState instead of setState to restore museInLink | Alexander Krotov | 1 | -1/+1 | |
2018-02-19 | Move manyUntil to Text.Pandoc.Parsing and use it in Txt2Tags reader | Alexander Krotov | 1 | -14/+0 | |
2018-02-16 | Muse reader: prioritize lists with roman numerals over alphabetical lists | Alexander Krotov | 1 | -1/+1 | |
This is to make sure "i." starts a roman numbered list, instead of a list with letter "i" (followed by "j", "k", ..."). | |||||
2018-02-15 | Muse reader: fix directive parsing | Alexander Krotov | 1 | -3/+1 | |
This fixes bugs introduced in commit 4bfab8f04c105f111d8d4e1c3ed7f7b5c75dbd19. | |||||
2018-02-13 | Muse reader: remove listItemContents function | Alexander Krotov | 1 | -12/+8 | |
2018-02-13 | Muse reader: hlint | Alexander Krotov | 1 | -7/+7 | |
2018-02-13 | Muse reader: parse definition lists with multiple descriptions | Alexander Krotov | 1 | -14/+25 | |
2018-02-13 | Muse reader: parse next list item before parsing more item contents | Alexander Krotov | 1 | -7/+10 | |