Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-01-17 | Convert highlighting-kate language to listings language | John MacFarlane | 1 | -19/+63 | |
if --listings is used. Closes #704. | |||||
2013-01-15 | LaTeX writer: Prevent paragraphs containing only linebreaks or spaces. | John MacFarlane | 1 | -4/+9 | |
2013-01-15 | Use 'fig:' instead of '\SOH' in title to indicate figure. | John MacFarlane | 1 | -2/+2 | |
Revises 1a4b47e93368bfbd31daccdfedbd9527ee740201 | |||||
2013-01-14 | Implemented Ext_implicit_figures. | John MacFarlane | 1 | -1/+2 | |
* In markdown reader, add a '\1' character to the beginning of the title of an image that is alone in its paragraph, if implicit_figures extension is selected. * In writers, check for Para [Image alt (src,'\1':tit)] and treat it as a figure if possible. * Updated tests. This is a bit of a hack, but it allows us to make implicit_figures an extension of the markdown reader, rather than the writers. | |||||
2013-01-12 | Escape `|` as `\vert` in LaTeX math. | John MacFarlane | 1 | -2/+11 | |
This avoids a clash with highlighting-kate's macros, which redefine | as a short verbatim delimiter. Thanks to Björn Peemöller for raising this issue. | |||||
2013-01-11 | Changed hspace in last commit to 0.333em. | John MacFarlane | 1 | -1/+1 | |
This seems to match the spacing of ~ exactly. | |||||
2013-01-11 | LaTeX writer: Use `\hspace*` for nonbreaking space after line break. | John MacFarlane | 1 | -1/+13 | |
Since `~` spaces after a line break are just ignored. Closes #687. | |||||
2013-01-09 | Fixed regression in example lists. | John MacFarlane | 1 | -6/+7 | |
This was associated with e1be934dc2ff061e5200017d6503280686983e1f. | |||||
2013-01-09 | Added Attr field to Header. | John MacFarlane | 1 | -5/+5 | |
Previously header ids were autogenerated by the writers. Now they are generated (unless supplied explicitly) in the markdown parser, if the `header_identifiers` extension is selected. In addition, the textile reader now supports id attributes on headers. | |||||
2013-01-07 | Implemented tight lists in context, latex writers. | John MacFarlane | 1 | -2/+12 | |
2013-01-06 | Don't put the text of an autolink in Code font. | John MacFarlane | 1 | -1/+1 | |
2013-01-05 | LaTeX tables: Use minipage rather than parbox for block containers. | John MacFarlane | 1 | -2/+2 | |
This allows verbatim code to be included in grid tables. Closes #663. | |||||
2013-01-05 | Changed --toc-level to --toc-depth. | John MacFarlane | 1 | -1/+1 | |
2013-01-05 | Implemented --toc-level in LaTeX writer. | John MacFarlane | 1 | -0/+4 | |
2012-11-04 | LaTeX writer: Don't use [fragile] unnecessarily. | John MacFarlane | 1 | -1/+5 | |
We were using [fragile] on slides even if they only contained code that was rendered using `\texttt`. Now `[fragile]` is only used for slides containing inline code if that code is rendered using listings. Closes #649. | |||||
2012-09-16 | LaTeX writer: Don't rely on the enumerate package. | John MacFarlane | 1 | -17/+27 | |
Instead, use standard LaTeX commands to change numbering style. | |||||
2012-09-16 | LaTeX writer: Properly escape strings inside \url{}. | John MacFarlane | 1 | -1/+2 | |
Closes #576. | |||||
2012-09-15 | LaTeX writer: Don't escape _ in hyperref identifiers. | John MacFarlane | 1 | -1/+1 | |
2012-09-15 | LaTeX writer: don't escape _ in url. | John MacFarlane | 1 | -1/+1 | |
2012-09-15 | LaTeX writer: Don't use \endhead with longtable. | John MacFarlane | 1 | -1/+1 | |
It causes the heading to be a different size form the body, sometimes. | |||||
2012-09-15 | LaTeX writer: Use longtable instead of ctable. | John MacFarlane | 1 | -19/+17 | |
2012-08-08 | Changes to literate haskell options. | John MacFarlane | 1 | -1/+1 | |
- Removed writerLiterateHaskell from WriterOptions. - Removed readerLiterateHaskell from ReaderOptions. - Added Ext_literate_haskell to Extensions. Test for this instead of the above. - Removed failUnlessLHS from Shared. Note: At this point, +lhs and .lhs extension no longer has any effect. Need to fix. | |||||
2012-08-04 | Don't include empty captions in figures. | John MacFarlane | 1 | -2/+4 | |
Closes #581. | |||||
2012-07-26 | Moved WriterOptions and associated types Shared -> Options. | John MacFarlane | 1 | -0/+1 | |
2012-06-25 | Don't generate empty H1 after hrule slide breaks. | John MacFarlane | 1 | -2/+5 | |
We now use a slide-level header with contents [Str "\0"] to mark an hrule break. This avoids creation of an empty H1 in these contexts. Closes #484. | |||||
2012-06-03 | Fixed `--incremental` behavior for Beamer. | John MacFarlane | 1 | -1/+1 | |
When `--incremental` is used, lists inside block quotes should appear all at once (as in HTML). | |||||
2012-06-01 | LaTeX writer: Ensure newline after Verbatim at end of footnote. | John MacFarlane | 1 | -1/+4 | |
This fixes a regression. Also added a test for this. | |||||
2012-05-14 | LaTeX writer: More consistent interblock spacing. | John MacFarlane | 1 | -24/+18 | |
2012-05-13 | LaTeX reader: ensure we don't have extra blank lines at ends of cells. | John MacFarlane | 1 | -1/+1 | |
This can cause LaTeX errors, as they are interpreted as new paragraphs. | |||||
2012-05-11 | Added writerTeXLigatures to WriterOptions, `--no-tex-ligatures` option. | John MacFarlane | 1 | -24/+23 | |
This is useful for those who want to use advanced OpenType features with xelatex/lualatex. | |||||
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-21 | LaTeX writer: Use fixltx2e package to provide '\textsubscript'. | John MacFarlane | 1 | -8/+2 | |
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-03 | LaTeX writer: don't use eurosym package unless document has a €. | John MacFarlane | 1 | -11/+17 | |
2012-03-25 | Added PDF metadata (title,author) in LaTeX standalone + PDF output. | John MacFarlane | 1 | -0/+2 | |
Closes #459. | |||||
2012-03-12 | Use {} around ctable caption. Closes #445. | John MacFarlane | 1 | -1/+1 | |
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 \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-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-01-27 | LaTeX writer: escape # in href URLs. Closes #359. | John MacFarlane | 1 | -6/+2 | |
2012-01-27 | Removed some unused code. | John MacFarlane | 1 | -3/+0 | |
2012-01-25 | Added --slide-level option to override default. | John MacFarlane | 1 | -1/+5 | |
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). | |||||
2012-01-25 | LaTeX/beamer: --chapters causes level 1 to be \part{..}. | John MacFarlane | 1 | -3/+6 | |
2012-01-23 | Slides: New approach, using hierarchicalize. | John MacFarlane | 1 | -23/+31 | |
This will work better with the HTML slideshows. | |||||
2012-01-23 | LaTeX beamer: Only add [fragile] to slide if it contains verbatim. | John MacFarlane | 1 | -1/+8 | |
Closes #385. | |||||
2012-01-23 | Use Slides in LaTeX writer for beamer. | John MacFarlane | 1 | -29/+17 | |
2011-12-30 | Fixed layout bug in ConTeXt and LaTeX writers. | John MacFarlane | 1 | -2/+2 | |
This was a regression introduced by the recent internal links changes. | |||||
2011-12-30 | LaTeX writer: only use hyperdef on section if there's a link to it. | John MacFarlane | 1 | -27/+34 | |