aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-03-02Update man page and date on MANUAL.2.1.2John MacFarlane
2018-03-02Update changelog.John MacFarlane
2018-03-02Revert "Commonmark reader: parse HTML as plain text if `-raw_html`."John MacFarlane
This reverts commit 6dd21250288b51f10056b15a83130f76c788d904.
2018-03-02Commonmark reader: parse HTML as plain text if `-raw_html`.John MacFarlane
2018-03-03Muse reader: fix indentation requirements for footnote continuationsAlexander Krotov
2018-03-02Make `Ext_raw_html` default for commonmark format.John MacFarlane
2018-03-02Update changelog.John MacFarlane
2018-03-02Bump version to 2.1.2.John MacFarlane
2018-03-02Use latest pandoc-citeproc.John MacFarlane
2018-03-02LaTeX reader: Fix regression in package options including underscore.John MacFarlane
Closes #4424.
2018-03-02hlint Muse reader and writerAlexander Krotov
2018-03-02Muse reader: enable <literal> tags even if amuse extension is enabledAlexander Krotov
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-02Muse reader: remove space prefix from <literal> tag contentsAlexander Krotov
2018-03-02Muse writer: update writer.museAlexander Krotov
2018-03-02Muse writer: join strings during inline normalizationAlexander Krotov
2018-03-02Muse reader: do not consume whitespace while looking for closing end tagAlexander Krotov
Fix for a bug caught by round-trip test.
2018-03-02Org writer: fix a typo s/prettyfy/prettify/Alexander Krotov
2018-03-02Muse reader: convert alphabetical list markers to decimal in round-trip testAlexander Krotov
Alphabetical lists are an addition of Text::Amuse. They are not present in Emacs Muse and can be ambiguous when list starts with "i.", "c." etc.
2018-02-28Docx reader: Handle nested sdt tags.Jesse Rosenthal
Previously we had only unwrapped one level of sdt tags. Now we recurse if we find them. Closes: #4415
2018-02-28Muse reader: add test for verse tag with one empty lineAlexander Krotov
2018-02-28Muse writer: change verse markupAlexander Krotov
Use "> " instead of <verse> tag
2018-02-28Muse writer: remove empty strings during inline normalizationAlexander Krotov
2018-02-28Muse reader: allow <quote> and other tags to be indentedAlexander Krotov
2018-02-28Update tagsoup to 0.14.6Alexander Krotov
2018-02-27Set fixed minor version for hsluaAlbert Krewinkel
The ToLuaStack instance for Set is orphaned. The PVP requires the minor version to be fixed in this case.
2018-02-27Powerpoint writer: use `trim` from SharedJesse Rosenthal
Instead of writing my own.
2018-02-27Powerpoint writer: Use table stylesJesse Rosenthal
This will use the default table style in the reference-doc file. As a result they will be easier when using in a template, and match the color scheme.
2018-02-27Powerpoint writer: add test for table and list syntaxJesse Rosenthal
These were never added when the tests were first created. Output files checked in MS PowerPoint 2013 (Windows 10, VBox). No corruption, and output as expected.
2018-02-27Powerpoint writer: Remove empty slidesJesse Rosenthal
Make sure there are no empty slides in the pptx output. Because of the way that slides were split, these could be accidentally produced by comments after images. When animations are added, there will be a way to add an empty slide with either incremental lists or pauses. Test outputs checked with MS PowerPoint (Office 2013, Windows 10, VBox). Both files have expected output and are not corrupted.
2018-02-27Update tagsoup to 0.14.5Alexander Krotov
2018-02-27Update tagsoup to 0.14.4Alexander Krotov
Fixes #4282
2018-02-26LaTeX reader: make --trace work.John MacFarlane
2018-02-26Org reader tests: move citation tests to separate moduleAlbert Krewinkel
2018-02-26Allow exceptions 0.9.John MacFarlane
2018-02-25Removed ghc-prof-options.John MacFarlane
As of cabal 1.24, sensible defaults are used. See https://www.haskell.org/cabal/users-guide/developing-packages.html#pkg-field-ghc-prof-options.
2018-02-25doc/org.md: Add Org-mode documentation (very first draft)Albert Krewinkel
2018-02-25Tests/Lua: fix tests on windowsAlbert Krewinkel
2018-02-24doc/lua-filters.md: document global vars set for filtersAlbert Krewinkel
2018-02-24Lua: register script name in global variableAlbert Krewinkel
The name of the Lua script which is executed is made available in the global Lua variable `PANDOC_SCRIPT_FILE`, both for Lua filters and custom writers. Closes: #4393
2018-02-24Muse reader: allow single colon in definition list termAlexander Krotov
2018-02-23Docx reader: code cleanup.Jesse Rosenthal
Make the code in `runStyleToTransform` a bit more consistent.
2018-02-23Docx reader: simplify custom-style reading code.Jesse Rosenthal
2018-02-23Docx reader: Don't look up dependant run styles if +styles is enabled.Jesse Rosenthal
It makes more sense not to interpret -- otherwise using the original document as the reference-doc would produce two of everything: the interpreted version and the uninterpreted style version.
2018-02-23Muse writer: don't indent nested definition listsAlexander Krotov
2018-02-23Docx writer: trim trailing whitespace.Jesse Rosenthal
2018-02-23Docx test: adjust test for fix of buglaptop1\Andrew
This commit adjusts the test cases for the Docx writer after the fix of #3930. - Adjusted test cases with inline images. The inline images now have the correct sizing, title and description. - Modified the test case to include an image multiple times with different sizing each time. - Tested on Windows 8.1 with Word 2007 (12.0.6705.5000) The files are not corrupted and display exactly what is expected.
2018-02-23Docx writer: fix #3930laptop1\Andrew
Fixes an issuue regarding image sizing if the same image is included more than once. Previously, a record was kept, indexed by image source, which would include the XML for that image. For every image element in the document, this record was checked, and if the image was the same as previous examples, the same XML would be included twice. The information in this XML incudes the image description, title text, and size on the page, thus all images from the same source would always be sized the same, and have the same description. This commit fixes this by generating unique XML every time, but keeping the image ID and path if it is the same image.
2018-02-23Muse reader: improve verse parsingAlexander Krotov
Now verse marked up with ">" (in contrast to <verse> tag) can be placed inside lists.
2018-02-23Export improved sepBy1 from Text.Pandoc.ParsingAlexander Krotov
2018-02-22Require aeson-pretty 0.8.5. Closes #4394.John MacFarlane
`confTrailingNewline` is introduced in this version.