Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-03-29 | lstinline with braces can be used (verb cannot be used with braces) (#3535) | schrieveslaach | 1 | -0/+23 | |
* Fix lstinline handling: lstinline with braces can be used (verb cannot be used with braces) * Use codeWith and determine the language from lstinline * Improve code * Add another test: convert lstinline without language option | |||||
2017-03-27 | LaTeX reader: add support for LaTeX subfiles package. | schrieveslaach | 3 | -0/+38 | |
Closes #3530. | |||||
2017-03-26 | Add blank lines to #3531 command test. | John MacFarlane | 1 | -0/+2 | |
2017-03-26 | MediaWiki writer: don't softbreak lines inside list items. | John MacFarlane | 1 | -0/+19 | |
Closes #3531. | |||||
2017-03-26 | Ms writer: Hyperlink table of contents and other improvements. | John MacFarlane | 1 | -3/+14 | |
2017-03-26 | Ms writer: Add PDF outline bookmarks. | John MacFarlane | 1 | -0/+31 | |
2017-03-26 | Fixed a test not updated on last commit. | John MacFarlane | 1 | -1/+1 | |
2017-03-26 | Ms writer: Use @ instead of | for inline math delimiter. | John MacFarlane | 2 | -87/+87 | |
The `|` delimiter had a bad interaction with tbl. See discussion in #1839. | |||||
2017-03-26 | Ms writer: Support external links. | John MacFarlane | 1 | -63/+154 | |
Also add config options for link color. | |||||
2017-03-26 | Ms writer: better placement of header anchors. | John MacFarlane | 1 | -31/+31 | |
2017-03-25 | Ms writer: Implement header identifiers and internal links. | John MacFarlane | 1 | -2/+32 | |
2017-03-25 | Ms writer: use light gray for strikeout. | John MacFarlane | 1 | -1/+3 | |
Pending groff definitions for striking out an arbitrary section of text (not just a few words). | |||||
2017-03-25 | Ms writer: improved pdf metadata. | John MacFarlane | 1 | -1/+2 | |
2017-03-25 | Updated test suite for ms template change. | John MacFarlane | 1 | -0/+4 | |
2017-03-25 | Ms. writer: links: use footnote only for absolute URIs. | John MacFarlane | 1 | -97/+24 | |
2017-03-25 | Updated tests. | John MacFarlane | 1 | -2/+1 | |
2017-03-24 | Ms writer: Use indented paragraphs after first in section. | John MacFarlane | 1 | -73/+73 | |
Note that the current indentation setting is 0; see the settings in the template. | |||||
2017-03-24 | default.ms: Add settings for document variables like width. | John MacFarlane | 1 | -2/+30 | |
2017-03-24 | Ms writer: support --toc, date, abstract. | John MacFarlane | 1 | -0/+1 | |
2017-03-24 | Markdown writer: don't emit a simple table if `simple_tables` disabled. | John MacFarlane | 1 | -0/+15 | |
Closes #3529. | |||||
2017-03-24 | Ms writer: Use custom .HRULE macro for horizontal rule. | John MacFarlane | 1 | -36/+27 | |
2017-03-23 | Ms writer: improved definition lists. | John MacFarlane | 1 | -53/+36 | |
Use standard .IP macro. Also properly escape ". | |||||
2017-03-23 | Pipe tables: impose minimum cell size. | John MacFarlane | 1 | -0/+14 | |
This might help with #3526. At any rate, it fixes another bug (see test/command/3526.md). | |||||
2017-03-23 | Grid tables: remove unnecessary extra space in cells. | John MacFarlane | 2 | -38/+38 | |
2017-03-23 | Ms writer: fixed hard line breaks. | John MacFarlane | 1 | -3/+1 | |
2017-03-23 | Updated ms tests. | John MacFarlane | 1 | -6/+16 | |
2017-03-23 | Ms. writer: don't render links in footnotes as footnotes. | John MacFarlane | 1 | -6/+2 | |
2017-03-23 | Ms writer: Improved footnotes. | John MacFarlane | 1 | -5/+0 | |
2017-03-23 | Ms writer: fixed strong/emph combination. | John MacFarlane | 1 | -4/+4 | |
Perhaps something similar is needed in the man writer. | |||||
2017-03-23 | Initial addition of groff ms writer. | John MacFarlane | 3 | -0/+1223 | |
* New module: Text.Pandoc.Writers.Ms. * New template: default.ms. * The writer uses texmath's new eqn writer to convert math to eqn format, so a ms file produced with this writer should be processed with `groff -ms -e` if it contains math. | |||||
2017-03-22 | Added to issue 3516 command test to debug test failure on appveyor. | John MacFarlane | 1 | -0/+36 | |
2017-03-21 | Plain writer: use _(..) or ^(..) for super/subscript... | John MacFarlane | 2 | -3/+3 | |
...unless unicode super/subscripted characters are available. | |||||
2017-03-21 | Improve rendering of superscript in plain output. | John MacFarlane | 1 | -0/+6 | |
We now handle a few non digit characters (+, -, =, parentheses) for which there are superscripted unicode characters. Closes #3518. | |||||
2017-03-21 | RST writer: improve grid table output, fix bug with empty rows. | John MacFarlane | 3 | -36/+51 | |
Uses the new gridTable in Writers.Shared, which is here improved to better handle 0-width cells. Closes #3516. | |||||
2017-03-20 | Add `space_in_atx_header` extension. | John MacFarlane | 1 | -0/+13 | |
This is enabled by default in pandoc and GitHub markdown but not the other flavors. This requirse a space between the opening #'s and the header text in ATX headers (as CommonMark does but many other implementations do not). This is desirable to avoid falsely capturing things ilke #hashtag or #5 Closes #3512. | |||||
2017-03-20 | Lua filters (#3514) | Albert Krewinkel | 5 | -0/+62 | |
* Add `--lua-filter` option. This works like `--filter` but takes pathnames of special lua filters and uses the lua interpreter baked into pandoc, so that no external interpreter is needed. Note that lua filters are all applied after regular filters, regardless of their position on the command line. * Add Text.Pandoc.Lua, exporting `runLuaFilter`. Add `pandoc.lua` to data files. * Add private module Text.Pandoc.Lua.PandocModule to supply the default lua module. * Add Tests.Lua to tests. * Add data/pandoc.lua, the lua module pandoc imports when processing its lua filters. * Document in MANUAL.txt. | |||||
2017-03-19 | Removed failing part of 3348 test. | John MacFarlane | 1 | -16/+0 | |
This was failing because of a small discrepancy in markdown table header line lengths on appveyor. It's a minor issue, I can't see what is causing it, and it's irrelevant to the issue this is testing, so we'll just write native for this test. | |||||
2017-03-18 | HTML reader: Better sanity checks on raw HTML. | John MacFarlane | 1 | -0/+13 | |
This also affects the Markdown reader. Closes #3257. | |||||
2017-03-17 | Added test case to 3348 to try to figure out why appveyor build fails. | John MacFarlane | 1 | -0/+18 | |
2017-03-17 | Adjust command test 3348.md to specify column width. | John MacFarlane | 1 | -1/+1 | |
This is meant to address a test failure on appveyor. | |||||
2017-03-16 | Added test for #256. | John MacFarlane | 2 | -0/+14 | |
2017-03-15 | OpenDocument writer: use more widely available bullet characters. | John MacFarlane | 1 | -102/+102 | |
The old characters weren't available in some font sets. These seem to work well on Windows and Linux versions of LibreOffice. Closes #1400. | |||||
2017-03-15 | Use tasty-golden for golden tests in Old. | John MacFarlane | 1 | -39/+52 | |
2017-03-14 | Command tests: just findPandoc once. | John MacFarlane | 1 | -4/+4 | |
2017-03-14 | Removed unneeded import. | John MacFarlane | 1 | -1/+0 | |
2017-03-14 | Got rid of distracting warning in test output. | John MacFarlane | 1 | -2/+2 | |
2017-03-14 | Small test plumbing improvement. | John MacFarlane | 1 | -11/+11 | |
2017-03-14 | Use tasty for tests rather than test-framework. | John MacFarlane | 27 | -137/+132 | |
2017-03-13 | Better handling of \part in LaTeX. | John MacFarlane | 1 | -0/+30 | |
Closes #1905. Removed stateChapters from ParserState. Now we parse chapters as level 0 headers, and parts as level -1 headers. After parsing, we check for the lowest header level, and if it's less than 1 we bump everything up so that 1 is the lowest header level. So `\part` will always produce a header; no command-line options are needed. | |||||
2017-03-13 | Put TEI writer inside PandocMonad. Added warnings for omitted raw elements. | John MacFarlane | 1 | -31/+31 | |
Also added identifiers on `<div>` elements. These were commented out before, not sure why? |