Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-04-30 | Improved spacing around LaTeX block environments. | John MacFarlane | 1 | -5/+11 | |
verbatim, itemize, description, enumerate. | |||||
2012-04-30 | LaTeX writer: Fixed spacing in quote environments. | John MacFarlane | 1 | -1/+2 | |
Closes #502. Previously you'd get: ~~~ hi \begin{quote} hi \end{quote} hi ~~~ Now we get: ~~~ hi \begin{quote} hi \end{quote} hi ~~~ | |||||
2012-04-29 | ConTeXt writer: Fixed escaping of `%`. | John MacFarlane | 1 | -2/+2 | |
* In text, `%` needs to be escaped as `\letterpercent`, not `\%` * Inside URLs, `%` needs to be escaped as `\%` Thanks to jmarca and adityam for the fix. Closes #492. | |||||
2012-04-25 | Texinfo writer: Escape special characters in node titles. | John MacFarlane | 1 | -1/+2 | |
This fixes a problem pointed out by Joost Kremers. Pandoc used to escape an '@' in a chapter title, but not in the corresponding node title, leading to invalid texinfo. | |||||
2012-04-24 | Removed blaze_html_05 flag -- require blaze >= 0.5 by default. | John MacFarlane | 1 | -5/+1 | |
2012-04-23 | changes for blaze-html 0.5 | Mark Wright | 1 | -1/+6 | |
2012-04-21 | LaTeX writer: Use fixltx2e package to provide '\textsubscript'. | John MacFarlane | 1 | -8/+2 | |
2012-04-21 | RST writer: Don't wrap link references. | John MacFarlane | 1 | -1/+1 | |
Closes #487. | |||||
2012-04-21 | LaTeX writer: Use `\hyperref[ident]{text}` for internal links. | John MacFarlane | 1 | -0/+4 | |
Previously we used `\href{\#ident}{text}`, which didn't work on all systems. Thanks to Dirk Laurie. | |||||
2012-04-21 | Docx writer: Fixed error message when style file can't be parsed. | John MacFarlane | 1 | -1/+2 | |
2012-04-15 | Mardkown writer: escape < and $. | John MacFarlane | 1 | -1/+1 | |
2012-04-11 | Markdown writer: don't force delimited code blocks to be flush left. | John MacFarlane | 1 | -1/+1 | |
Fixes bug with delimited code blocks inside lists etc. | |||||
2012-04-07 | Docx writer: Fixed multi-paragraph list items. | John MacFarlane | 1 | -1/+4 | |
Previously they each got a list marker. Closes #457. | |||||
2012-04-03 | LaTeX writer: don't use eurosym package unless document has a €. | John MacFarlane | 1 | -11/+17 | |
2012-04-03 | Markdown writer: don't replace empty alt in image with "image". | John MacFarlane | 1 | -3/+3 | |
Previously `<img src="empty.png" alt=""/>` would be translated as `![image](empty.png)`; now it becomes `![](empty.png)` as one might naturally expect. | |||||
2012-03-29 | Avoid repeated id in section and header in HTML slides. | John MacFarlane | 1 | -3/+2 | |
Previously pandoc would use the same id attribute for the div or section and the header inside it; now the id is omitted from the header if the div or section has it. | |||||
2012-03-25 | Added PDF metadata (title,author) in LaTeX standalone + PDF output. | John MacFarlane | 1 | -0/+2 | |
Closes #459. | |||||
2012-03-24 | RST writer: Better handling of inline formatting. | John MacFarlane | 1 | -4/+51 | |
* `hi*there*hi` now gets rendered properly as `hi\ *there*\ hi` * Unnecessary '\ ' are avoided around :math:, :sub:, :sup: * Implemented most of the rules in http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#inline-markup-recognition-rules, though some unnecessary '\ ' may be inserted when unicode quotes are used. | |||||
2012-03-21 | Texinfo writer: retain directories in image paths. | Peter Wang | 1 | -1/+1 | |
2012-03-12 | Use {} around ctable caption. Closes #445. | John MacFarlane | 1 | -1/+1 | |
2012-03-09 | Made man writer more robust. | John MacFarlane | 1 | -5/+6 | |
Previously it assumed that inlines weren't normalized. | |||||
2012-03-09 | EPUB reader: convert e.g. en_US from locale to en-US in language. | John MacFarlane | 1 | -1/+2 | |
2012-03-07 | Merge pull request #438 from michaelt/patch-2 | John MacFarlane | 1 | -0/+2 | |
Fix initial `Str "."` after `LineBreak` as well? | |||||
2012-03-07 | Merge pull request #437 from michaelt/patch-1 | John MacFarlane | 1 | -1/+5 | |
escape initial dot in code lines | |||||
2012-03-07 | Set mainlang variable in context writer. | John MacFarlane | 1 | -0/+2 | |
This parallels behavior of latex writer. Mainlang is the last of a comma-separated list of languages in lang. | |||||
2012-03-07 | Fix initial `Str "."` after `LineBreak` as well? | Michael Thompson | 1 | -0/+2 | |
2012-03-07 | escape initial dot in code lines | Michael Thompson | 1 | -1/+5 | |
2012-03-05 | Fixed ployglossia support in LaTeX template for multiple langs. | John MacFarlane | 1 | -0/+2 | |
\setmainlanguage will now just use the last of a comma-separated list of languages. | |||||
2012-03-03 | Use <q> tags for Quoted items for HTML5 output. | John MacFarlane | 1 | -4/+11 | |
The quote style can be changed by modifying the template or including a css file. A default quote style is included. | |||||
2012-03-03 | EPUB writer: Use extensible exceptions. | John MacFarlane | 1 | -1/+3 | |
2012-03-03 | Use \textasciitilde for ~ in LaTeX writer. | John MacFarlane | 1 | -1/+1 | |
2012-03-02 | Fixed bug in LaTeX string escaper (with ~). | John MacFarlane | 1 | -1/+1 | |
2012-02-21 | HTML writer: Don't escape contents of EQ tags with --gladtex. | John MacFarlane | 1 | -2/+2 | |
This fixes a regression from 1.8.x. Closes #428. | |||||
2012-02-14 | Add TableNormal style to tables. | John MacFarlane | 1 | -2/+3 | |
Needs testing with Word. | |||||
2012-02-11 | Fix _rels/.rels if it has been screwed up by Word. | John MacFarlane | 1 | -1/+10 | |
Closes #414. Previously, if you edited the reference.docx with Word, then created a new docx using the edited reference.docx, Word would complain about the file being corrupt. The problem seems to be that Word changes _rels/.rels, changing the Type of the Relationship to docProps/core.xml from "http://schemas.openxmlformats.org/officedocument/2006/relationships/metadata/core-properties" to "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties". As far as I can see, this is a bug in Word, since the latter is not valid. (See http://idippedut.dk/post/2010/04/22/Correct-according-to-spec-or-implementation.aspx.) This change simply does a global replace on _rels/.rels that reverts the change Word makes. And now producing docx files with Word-modified reference.docx seems to work. | |||||
2012-02-08 | Don't wrap headers in markdown or rst. | John MacFarlane | 2 | -2/+3 | |
2012-02-06 | LaTeX writer: prevent adjacent hyphens from forming ligatures. | John MacFarlane | 1 | -20/+32 | |
This is important primarily for things like `--option`. Em and En dashes will produce '---' and '--' in LaTeX, but hyphens should not otherwise combine into dashes. | |||||
2012-02-05 | Removed module Text.Pandoc.CharacterReferences. | John MacFarlane | 1 | -3/+2 | |
Moved characterReference parser to Text.Pandoc.Parsing. decodeCharacterReferences is now replaced by fromEntities in Text.Pandoc.XML. | |||||
2012-02-05 | Normalize date in EPUB metadata. | John MacFarlane | 1 | -1/+1 | |
2012-01-31 | Don't let autolinks create reference links. | John MacFarlane | 1 | -1/+1 | |
Previously we got bad results with -t markdown --reference-links if the input contained autolinks like <http://yahoo.com>. | |||||
2012-01-31 | Don't include mathml javascript for html5 output. | John MacFarlane | 1 | -1/+2 | |
mathml is supposed to be supported in HTML5. | |||||
2012-01-31 | Support `--mathml` flag in docbook. | John MacFarlane | 1 | -2/+28 | |
2012-01-30 | Added `--epub-embed-font` option. | John MacFarlane | 1 | -5/+23 | |
* This can be repeated for multiple fonts. * Added parameter for fonts to embed to writeEPUB. * Added ttf, otf to Mime types in Text.Pandoc.MIME. | |||||
2012-01-28 | Remove dependency on old-time. | John MacFarlane | 3 | -6/+6 | |
2012-01-28 | Put date in YYYY-MM-DD format if possible for HTML, docx metadata. | John MacFarlane | 2 | -5/+6 | |
Added normalizeDate to Text.Pandoc.Shared. | |||||
2012-01-27 | LaTeX writer: escape # in href URLs. Closes #359. | John MacFarlane | 1 | -6/+2 | |
2012-01-27 | Docbook writer: Use sect1, sect2, etc. instead of section. | John MacFarlane | 1 | -9/+11 | |
2012-01-27 | Finished implementing --atx-headers in markdown writer. | John MacFarlane | 1 | -2/+5 | |
2012-01-27 | Removed some unused code. | John MacFarlane | 1 | -3/+0 | |
2012-01-25 | Added --slide-level option to override default. | John MacFarlane | 2 | -4/+14 | |
This allows users to select a slide level below the first header level with content. Note that content under sections above the slide level will not appear in slides (either in beamer or in HTML slide shows). This is primarily useful for creating documents that can be made into both slides and handouts (which contain additional content outside the slides). |