Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-07-01 | Do not add a carriage return after a hard line break in OpenDocument writer ↵ | Michael Chladek | 1 | -2/+1 | |
and reflect change in tests. | |||||
2015-06-29 | Fix RST reference names with special characters | Lars-Dominik Braun | 1 | -0/+4 | |
2015-06-27 | Textile writer: escape `+` and `-` as entities. | John MacFarlane | 1 | -8/+8 | |
Closes #2225. | |||||
2015-06-27 | Plain writer: don't use symbols for super/subscript. | John MacFarlane | 1 | -3/+3 | |
Simplified code by using plainExtensions from Options. Closes #2237. | |||||
2015-06-27 | Updated latex writer tests for last template change. | John MacFarlane | 3 | -0/+3 | |
2015-06-21 | DocBook reader mediaobjects and figures, closes #2184 | mb21 | 2 | -4/+23 | |
2015-06-09 | Fixed tests/docx/links.docx for new url. | John MacFarlane | 1 | -0/+0 | |
2015-06-09 | replace old url with pandoc.org | Pablo Rodríguez | 6 | -6/+6 | |
2015-06-09 | Fix InDesign crash with URLs containing more than one colon character | gohai | 1 | -18/+18 | |
Colons are valid characters in URLs, and used e.g. by the Internet Archive's Wayback Machine - a popular resource amongst researchers. When InDesign encounters a HyperlinkURLDestination with more than one colon character in it, it crashes when placing the ICML. (This was tested against CS6.) The IDML specification hints at this requirement in section 6.4.1: "The colon apppears in the Name attribute of the style, but is encoded as %3a when it appears in the Self attribute". Follow this example for all colon characters in URLs. | |||||
2015-06-07 | DokuWiki writer: Use proper `<code>` tags for code blocks. | John MacFarlane | 1 | -15/+37 | |
Closes #2213. | |||||
2015-05-27 | LaTeX template: Move hyperref before polyglossia. | John MacFarlane | 3 | -30/+30 | |
This avoids an error "Please load package hyperref before bidi package, and then try to run xelatex on your document again". See jgm/pandoc-templates #96. | |||||
2015-05-26 | Merge pull request #2169 from tarleb/org-header-tags | John MacFarlane | 1 | -4/+26 | |
Org reader: put header tags into empty spans | |||||
2015-05-26 | Merge pull request #2141 from DigitalPublishingToolkit/icml-images | John MacFarlane | 1 | -2/+2 | |
Fix image URIs in ICML output | |||||
2015-05-26 | Updated tests for new highlighting-kate. | John MacFarlane | 3 | -25/+76 | |
2015-05-23 | Org reader: drop trees with a :noexport: tag | Albert Krewinkel | 1 | -0/+7 | |
Trees having a `:noexport:` tag set are not exported. This mirrors default Emacs Org-Mode behavior. | |||||
2015-05-23 | Org reader: put header tags into empty spans | Albert Krewinkel | 1 | -4/+19 | |
Org mode allows headers to be tagged: ``` org-mode * Headline :TAG1:TAG2: ``` Instead of being interpreted as part of the headline, the tags are now put into the attributes of empty spans. Spans without textual content won't be visible by default, but they are detectable by filters. They can also be styled using CSS when written as HTML. This fixes #2160. | |||||
2015-05-13 | Markdown reader: Made implicit header references case-insensitive. | John MacFarlane | 2 | -0/+3 | |
Added `stateHeaderKeys` to `ParserState`; this is a `KeyTable` like `stateKeys`, but it only gets consulted if we don't find a match in `stateKeys`, and if `Ext_implicit_header_references` is enabled. Closes #1606. | |||||
2015-05-13 | HTML reader: Support base tag. | John MacFarlane | 2 | -0/+29 | |
We only support the href attribute, as there's no place for "target" in the Pandoc document model for links. Added HTML reader test module, with tests for this feature. Closes #1751. | |||||
2015-05-13 | Fixed regression in charsInBalancedBrackets. | John MacFarlane | 2 | -0/+6 | |
Introduced by e9d7504. This regression caused link and image references containing raw tex not to parse correctly. Added test. Closes #2150. | |||||
2015-05-11 | Fix image URIs in ICML output (v2) | gohai | 1 | -2/+2 | |
InDesign expects LinkResourceURI to start with "file:" for local filenames, and won't render/link the image without. | |||||
2015-05-04 | Test updates for 15d16e84567ca74c18448c60a2499e484581798f. | John MacFarlane | 3 | -0/+12 | |
2015-05-03 | Make sure a closing `</div>` doesn't get included in a defn list item. | John MacFarlane | 1 | -0/+4 | |
Closes #2127. | |||||
2015-05-02 | Fixed tests for change to latex template. | John MacFarlane | 3 | -3/+3 | |
2015-04-26 | Fixed regression with lists inside defintiion lists. | John MacFarlane | 1 | -0/+3 | |
This fixes a regression (not in any released version) on things like hi : - there Closes #2098. | |||||
2015-04-22 | EPUB tests: don't use joinPath, which varies across platforms. | John MacFarlane | 1 | -2/+5 | |
Instead, use a forward-slash to join paths, regardless of the platform. This matches the way MediaBag now works. See https://github.com/jgm/pandoc/commit/56e4ecab20613d86a6660547ed87e7ff4b80d632#commitcomment-10858449 | |||||
2015-04-20 | MD Reader: Tests for links/footnotes after citations | Nikolay Yakimov | 1 | -0/+41 | |
In-text citation suffix clashes with links and footnotes | |||||
2015-04-18 | Added test case for #2062. | John MacFarlane | 1 | -0/+3 | |
2015-04-18 | Markdown writer: improved escaping. | John MacFarlane | 3 | -17/+17 | |
`<` should not be escaped as `\<`, for compatibility with original Markdown. We now escape `<` and `>` with entities. Also, we now backslash-escape square brackets. Closes #2086. | |||||
2015-04-18 | Markdown definition lists: don't require indent for first line. | John MacFarlane | 1 | -0/+3 | |
Previously the body of the definition (after the `:` or `~` marker) needed to be in column 4. This commit relaxes that requirement, to better match the behavior of PHP Markdown Extra. So, now this is a valid definition list: foo : bar This patch also helps resolve a potentially ambiguity with table captions: foo : bar ----- table ----- Is "bar" a definition, or the caption for the table? We'll count it as a caption for the table. Closes #2087. | |||||
2015-04-17 | More principled fix for #1820. | John MacFarlane | 1 | -0/+3 | |
If the tag parses as a comment, we check to see if the input starts with `<!--`. If not, it's bogus comment mode and we fail htmlTag. Includes test case. Closes #1820. | |||||
2015-04-17 | Merge branch 'latex-tightlist' of https://github.com/jlduran/pandoc into ↵ | John MacFarlane | 4 | -30/+36 | |
jlduran-latex-tightlist Conflicts: data/templates | |||||
2015-04-17 | Merge pull request #1954 from mcmtroffaes/feature/citekey-firstchar-alphanum | John MacFarlane | 1 | -0/+22 | |
Allow digit as first character of a citation key. | |||||
2015-04-17 | Merge pull request #2079 from lierdakil/rst-normalize-headings | John MacFarlane | 2 | -0/+81 | |
RST Writer: Normalize headings to sequential levels | |||||
2015-04-17 | Merge pull request #2092 from lierdakil/issue1909 | John MacFarlane | 1 | -0/+3 | |
MD Reader: Smart apostrophe after inline math | |||||
2015-04-17 | LaTeX template: redefine `\paragraph`, `\subparagraph`... | John MacFarlane | 3 | -0/+18 | |
to behave more like section headers. Closes #1658. | |||||
2015-04-18 | MD Reader: Test for smart `'` after inline math | Nikolay Yakimov | 1 | -0/+3 | |
2015-04-16 | RST Writer: Tests for rubrics and heading normalization | Nikolay Yakimov | 2 | -0/+81 | |
2015-04-13 | LaTeX template: include grffile together with graphicx. | John MacFarlane | 1 | -1/+1 | |
This properly handles filenames containing spaces and dots. Closes #2074. | |||||
2015-04-12 | Merge pull request #2072 from lierdakil/latex-reader-cleanup | John MacFarlane | 1 | -0/+10 | |
LaTeX Reader: Code cleanup | |||||
2015-04-12 | OpenDocument template: use `text:p` instead of `text:h` for title. | John MacFarlane | 1 | -1/+1 | |
Using `text:h` causes problems with numbering. Closes #2059. Thansk to @nkalvi for diagnosing this. | |||||
2015-04-13 | LaTeX Reader: Test for `^^` character escapes | Nikolay Yakimov | 1 | -0/+10 | |
2015-04-12 | ODT Writer: Figure captions - Tests update | Nikolay Yakimov | 2 | -5/+6 | |
2015-04-07 | RST writer: better handling of raw latex inline. | John MacFarlane | 1 | -1/+5 | |
We use `` :raw-latex:`...` `` and add a definition for this role to the template. Closes #1961. | |||||
2015-03-30 | Latex Reader: More tests for corner cases | Nikolay Yakimov | 2 | -1/+9 | |
2015-03-30 | Latex Reader: Test for para starting with latex macro | Nikolay Yakimov | 2 | -1/+6 | |
2015-03-30 | LaTeX Reader: check for block-level newcommand aliases in blockCommand | Nikolay Yakimov | 2 | -1/+24 | |
2015-03-28 | Merge branch 'master' of https://github.com/rootzlevel/pandoc into ↵ | John MacFarlane | 1 | -0/+4 | |
rootzlevel-master Conflicts: src/Text/Pandoc/Readers/Org.hs | |||||
2015-03-28 | Merge branch 'master' of github.com:jgm/pandoc | John MacFarlane | 1 | -1/+0 | |
2015-03-28 | Fixed typo in lhs-test.html. | John MacFarlane | 1 | -1/+0 | |
2015-03-28 | Merge branch 'mpickering-errortype' | John MacFarlane | 9 | -19/+28 | |