Age | Commit message (Expand) | Author | Files | Lines |
2017-03-13 | Removed unused symbol. | John MacFarlane | 1 | -1/+0 |
2017-03-13 | RST writer: convert to PandocMonad, report on unrendered raw items. | John MacFarlane | 1 | -31/+39 |
2017-03-13 | Highlighting: highlighting now returns an Either rather than Maybe. | John MacFarlane | 3 | -15/+29 |
2017-03-13 | Put TEI writer inside PandocMonad. Added warnings for omitted raw elements. | John MacFarlane | 1 | -118/+135 |
2017-03-12 | Converted DokuWiki writer to use PandocMonad. | John MacFarlane | 1 | -25/+34 |
2017-03-12 | MediaWiki writer: use PandocMonad. | John MacFarlane | 1 | -23/+29 |
2017-03-11 | Markdown writer: fixed bugs in simple/multiline list output. | John MacFarlane | 1 | -10/+9 |
2017-03-10 | ConTeXt writer: converted to use PandocMonad. | John MacFarlane | 1 | -19/+28 |
2017-03-10 | Removed normalizeSpaces from Text.Pandoc.Shared. | John MacFarlane | 1 | -3/+3 |
2017-03-10 | Add Muse writer (#3489) | Alexander Krotov | 1 | -0/+336 |
2017-03-09 | HTML writer: info message if 'lang' is unspecified. | John MacFarlane | 1 | -1/+4 |
2017-03-09 | HTML writer: fallback to basename rather than Untitled. | John MacFarlane | 1 | -4/+5 |
2017-03-08 | Remove space at beginning/end of RST code span. | John MacFarlane | 1 | -1/+4 |
2017-03-08 | Markdown writer: Avoid spurious blanklines at end of document... | John MacFarlane | 1 | -1/+1 |
2017-03-08 | Markdown writer: ensure space before list at top level. | John MacFarlane | 1 | -22/+31 |
2017-03-08 | Markdown writer: escape unordered list markers at beginning of paragraph | John MacFarlane | 1 | -12/+20 |
2017-03-06 | Markdown writer: better handling of tables with empty columns. | John MacFarlane | 1 | -12/+22 |
2017-03-06 | Markdown writer: Fixed false ordered lists in YAML metadata. | John MacFarlane | 1 | -1/+1 |
2017-03-05 | Markdown writer: escape initial % in a paragraph... | John MacFarlane | 1 | -1/+5 |
2017-03-04 | Fixed some loose ends in #1592. | John MacFarlane | 1 | -4/+1 |
2017-03-04 | HTML writer: only issue warning for missing title if --standalone. | John MacFarlane | 1 | -11/+13 |
2017-03-04 | HTML writer: Render SmallCaps as span with smallcaps class. | John MacFarlane | 1 | -1/+1 |
2017-03-04 | Use smallcaps class for SmallCaps in CommonMark writer. | John MacFarlane | 1 | -1/+1 |
2017-03-04 | Markdown writer: Use span with class 'smallcaps' for SmallCaps. | John MacFarlane | 1 | -2/+1 |
2017-03-04 | Stylish-haskell automatic formatting changes. | John MacFarlane | 29 | -785/+805 |
2017-03-04 | HTML writer: issue warning if no title specified and template used. | John MacFarlane | 1 | -7/+14 |
2017-03-03 | OpenDocument writer: Clarified some code. | John MacFarlane | 1 | -12/+11 |
2017-03-03 | OpenDocument writer: fixed dropped elements in some ordered lists. | John MacFarlane | 1 | -1/+1 |
2017-03-03 | Docx writer: Don't include bookmarks on headers unless non-null id. | John MacFarlane | 1 | -22/+25 |
2017-03-03 | ConTeXt writer: remove unnecessary $ (#3482) | Alexander Krotov | 1 | -2/+2 |
2017-03-02 | LaTeX writer: add `\leavevmode` before hypertarget at start of paragraph. | John MacFarlane | 1 | -1/+8 |
2017-03-02 | LaTeX writer: use % after hypertarget before code block | John MacFarlane | 1 | -1/+4 |
2017-03-02 | LaTeX writer: minor tweak to hypertarget (semantically irrelevant). | John MacFarlane | 1 | -1/+3 |
2017-03-02 | Removed unnecessary import. | John MacFarlane | 1 | -1/+0 |
2017-03-01 | LaTeX writer: always add hypertarget when there's a non-empty identifier. | John MacFarlane | 1 | -29/+19 |
2017-03-01 | Writers: Use gets to access MonadState where possible (#3480) | Alexander Krotov | 7 | -53/+53 |
2017-03-01 | Markdown writer: Fixed grid tables embedded in grid tables. | John MacFarlane | 1 | -32/+49 |
2017-03-01 | Markdown writer: Refactored gridTable to use widths in chars. | John MacFarlane | 1 | -10/+12 |
2017-03-01 | ODT writer: calculate aspect ratio for percentage-sized images (#3478) | Mauro Bieg | 2 | -4/+2 |
2017-02-27 | Removed `--epub-stylesheet`; use `--css` instead. | John MacFarlane | 1 | -24/+28 |
2017-02-25 | Fixed type sig for older GHC versions. | John MacFarlane | 1 | -1/+1 |
2017-02-25 | Markdown writer: don't include variables in metadata blocks! | John MacFarlane | 1 | -4/+3 |
2017-02-25 | Fixed addVariablesToJSON. | John MacFarlane | 1 | -2/+5 |
2017-02-25 | Writers.Shared: export metaToJSON', addVariablesToJSON. | John MacFarlane | 1 | -10/+28 |
2017-02-25 | Writers.Shared: Changed metaToJSON a bit. | John MacFarlane | 1 | -4/+17 |
2017-02-25 | AsciiDoc writer: use PandocMonad throughout. | John MacFarlane | 1 | -24/+36 |
2017-02-25 | Docx writer: use Set for dynamic styles to avoid duplicates. | John MacFarlane | 1 | -8/+10 |
2017-02-25 | Docx writer: bookmarks for Span with id. | John MacFarlane | 1 | -45/+58 |
2017-02-25 | Docx writer bookmark improvements. | John MacFarlane | 1 | -21/+29 |
2017-02-24 | Use catchError instead of runExceptT. | John MacFarlane | 3 | -57/+68 |