summaryrefslogtreecommitdiff
path: root/src/Text
Commit message (Collapse)AuthorAge
* ImageSize: Fixed implementation of sizeInPoints.John MacFarlane2012-01-15
|
* Fixed whitespace bug in comments.John MacFarlane2012-01-15
|
* ImageSize: extract dpi information from PNG and JPEG.John MacFarlane2012-01-15
| | | | | * ImageSize record now includes dpiX, dpiY, pxX, pxY. * New functions sizeInPixels and sizeInPoints.
* ODT writer now sizes images appropriately.John MacFarlane2012-01-14
| | | | | | | | | | | | | OpenDocument writer: a title like "123x467" is interpreted as size in *points*. ODT writer: while adding images to the archive, computes their sizes and inserts a title attribute with the size before calling opendocument writer. Size is computed as follows: size in points = size in pixels * 96 / 72
* Export ImageType(..) from ImageSize.John MacFarlane2012-01-14
|
* Added Text.Pandoc.ImageSize.John MacFarlane2012-01-14
| | | | | This is intened for use in docx and odt writers, so the size of image boxes can be calculated.
* OpenDocument writer: treat image title of form "dddxddd" as size in px.John MacFarlane2012-01-14
| | | | | Later we'll modify the ODT writer to insert such titles, so image sizes will be correct in the ODT.
* SelfContained: Use getMimeType from Text.Pandoc.MIME.John MacFarlane2012-01-14
|
* Added 'layout-cache' to getMimeType.John MacFarlane2012-01-14
| | | | | | This ensures that the META-INF/manifest.xml for ODT files will have everything it needs. Fixes a bug using modified ODT files as `--reference-odt`.
* EPUB writer: Allow raw HTML.John MacFarlane2012-01-13
|
* Added "title" to list of docbook block-level tags.John MacFarlane2012-01-12
|
* Split html template into html, html5 templates.John MacFarlane2012-01-11
|
* HTML writer: Don't use self-closing img, br, hr tags.John MacFarlane2012-01-11
|
* Markdown reader: fixed bug in table/hrule parsing.John MacFarlane2012-01-10
| | | | | | | Top line of table must not be followed by a blank line. This bug caused slowdown on some files with hrules and tables, and pandoc tried to interpret the hrules as the tops of multiline tables.
* Markdown reader: Allow links in image captions.John MacFarlane2012-01-08
| | | | | | | | | | | | | | This change also means that [link with [link](/url)](/url) will turn into <p><a href="/url">link with link</a></p> instead of <p><a href="/url">link with [link](/url)</a></p>
* Templates: Tell pandoc where to find default "html5" template.John MacFarlane2012-01-08
|
* Markdown reader: Fix parsing of consecutive lists.John MacFarlane2012-01-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Pandoc previously behaved like Markdown.pl for consecutive lists of different styles. Thus, the following would be parsed as a single ordered list, rather than an ordered list followed by an unordered list: 1. one 2. two - one - two This patch makes pandoc behave more sensibly, parsing this as two lists. Any change in list type (ordered/unordered) or in list number style will trigger a new list. Thus, the following will also be parsed as two lists: 1. one 2. two a. one b. two Since we regard this as a bug in Markdown.pl, and not something anyone would ever rely on, we do not preserve the old behavior even when `--strict` is selected.
* EPUB writer: Allow `lang` variable to set language in metadata.John MacFarlane2012-01-01
| | | | Defaults to locale language if `lang` is not set.
* New treatment of dashes in --smart mode.John MacFarlane2012-01-01
| | | | | | | | | | | | * `---` is always em-dash, `--` is always en-dash. * pandoc no longer tries to guess when `-` should be en-dash. * A new option, `--old-dashes`, is provided for legacy documents. Rationale: The rules for en-dash are too complex and language-dependent for a guesser to work reliably. This change gives users greater control. The alternative of using unicode isn't very good, since unicode em- and en- dashes are barely distinguishable in a monospace font.
* Support for math in RST reader and writer.John MacFarlane2011-12-31
| | | | | | | | | | | | | | | | Inline math uses the :math:`...` construct. Display math uses .. math:: ... or if multilin .. math:: ... These seem to be supported now by rst2latex.py.
* Pretty: Added beforeNonBreak combinator.John MacFarlane2011-12-31
| | | | | This allows you to include something conditionally on it being before a nonblank. Used for RST inline math.
* Support Sphinx-style math in RST writer.John MacFarlane2011-12-30
| | | | http://sphinx.pocoo.org/latest/ext/math.html
* Support Sphinx style math in RST reader.John MacFarlane2011-12-30
| | | | | | | | | | | | | | | | | | | Inline: :math:`E=mc^2` Block: .. math: E = mc^2 .. math:: E = mc^2 a = b^2 (This latter will turn into a paragraph with two display math elements.) Closes #117.
* Fixed layout bug in ConTeXt and LaTeX writers.John MacFarlane2011-12-30
| | | | | This was a regression introduced by the recent internal links changes.
* LaTeX writer: only use hyperdef on section if there's a link to it.John MacFarlane2011-12-30
|
* Added support for internal links in ConTeXt writer.John MacFarlane2011-12-30
| | | | | | | | Based on a patch by B. Scott Michel. Also simplified use of \hyphenateurl. We no longer try to go within an Inline list to find URLs. This is resource-heavy, and the main use case is autolinks, which can be readily recognized.
* Add support for internal links to LaTeX writer.John MacFarlane2011-12-30
| | | | Based on a patch by B. Scott Michel.
* ConTeXt writer: Add section labels and internal links as in HTML.B. Scott Michel2011-12-30
| | | | | | | | | | | | Add the ability to refer to internal links to the ConTeXt writer, just like the HTML writer can. The 'hierarchicalize' function generates unique names for sections, which can be used for references in ConTeXt, just as they can be in HTML. The ConTeXt writer adds these unique identifiers to each \section and does special processing of the Link target to see if it starts with a '#' (hash symbol), which is the tip-off that the link is an internal link.
* HTML writer: Better handling of authors in meta tags.John MacFarlane2011-12-30
| | | | | | | Footnotes and email addresses now come out in a more pleasing way. Modified from a patch by B. Scott Michel.
* ConTeXt writer: Made `--toc` work even without `--number-sections`.John MacFarlane2011-12-30
|
* Small tweaks to hyphenatedurl patch.John MacFarlane2011-12-30
| | | | | Use isURI instead of isAbsoluteURI, as it also matches absolute URIs with '#...' at the end.
* ConTeXt_url_hyphenationB. Scott Michel2011-12-30
| | | | | Deeply scan through the [Inline] associated with a Link and ensure that all URLs are hyphenated using SYB primitives.
* LaTeX writer: Improved detection of book classes.John MacFarlane2011-12-30
| | | | | | | | | | We now check the `documentclass` variable, and if that is not set, we look through the template itself. Also, we have added the KOMA classes scrreprt and scrbook. You can now make a book using markdown2pdf -V documentclass:book
* EPUB: Get correct environment variable for LANG.John MacFarlane2011-12-30
| | | | This should fix `<dc:language>` problems.
* Better smart quote parsing.John MacFarlane2011-12-29
| | | | | | | | | | | * Added stateLastStrPos to ParserState. This lets us keep track of whether we're parsing the position immediately after a 'str'. If we encounter a ' in such a location, it must be an apostrophe, and can't be a single quote start. * Set this in the markdown, textile, html, and rst str parsers. * Closes #360.
* Merge pull request #366 from gridaphobe/masterJohn MacFarlane2011-12-29
|\ | | | | Use Link instead of RawInline for reference backlinks
| * change reference backlink from RawInline to Link so it gets rendered ↵Eric Seidel2011-12-24
| | | | | | | | properly when using the xmlhtml package
* | Made `html5` and `html5+lhs` output formats.John MacFarlane2011-12-29
| | | | | | | | | | Deprecated the `--html5`/`-5` flag. Use the output format instead.
* | Added 'beamer' as an output format.John MacFarlane2011-12-29
| | | | | | | | | | | | | | | | | | Beamer output uses the default LaTeX template, with some customizations via variables. Added `writerBeamer` to `WriterOptions`. Added `--beamer` option to `markdown2pdf`.
* | Preserve attributes in highlighted HTML.John MacFarlane2011-12-28
| | | | | | | | | | | | | | | | The container element will have the classes, id, and key-value attributes you specified in the delimited code block. Previously these were stripped off.
* | EPUB: Correctly handle internal links.John MacFarlane2011-12-28
| | | | | | | | | | | | | | | | | | | | | | | | Previously they were ignored. Now all links are preserved, but purely internal links are modified so that they point to the proper place in the EPUB. This is nontrivial, since the heading you refer to in your markdown source with 'my-section-1' might end up as 'ch16.xhtml#my-section' in the EPUB. Closes #76.
* | Added `--highlight-style` and `--no-highlight` options.John MacFarlane2011-12-27
| |
* | Highlighting: Add language as class name.John MacFarlane2011-12-27
| | | | | | | | This restores behavior of 1.8.2.1. Adjusted tests.
* | Replaced Apostrophe, Ellipses, EmDash, EnDash w/ unicode strings.John MacFarlane2011-12-27
| |
* | LaTeX reader: Return Str instead of Apostrophe.John MacFarlane2011-12-27
| |
* | Markdown reader: Improved previous patch to allow unicode apostrophe.John MacFarlane2011-12-27
| |
* | Pretty: return Str with unicode instead of Apostrophe.John MacFarlane2011-12-27
| |
* | EPUB writer: Make external (absolute) links active.John MacFarlane2011-12-26
| |
* | Modified str parser to capture apostrophes in smart mode.John MacFarlane2011-12-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This solves a problem stemming from the fact that a parser doesn't know what came *before* in the input stream. Previously pandoc would parse D'oh l'*aide* as containing a single quoted "oh l", when both `'`s should be apostrophes. (Issue #360.) There are two issues here. (a) It is obvious that the first `'` is not an open quote, becaues of the preceding `D`. This patch solves the problem. (b) It is obvious to us that the second `'` is not an open quote, because we see that *aide* is some text. But getting a good algorithm that has good performance is a bit tricky. You can't assume that `'` followed by `*` is always an apostrophe: *'this is quoted'* This patch does not fix (b).
* | Updated highlighting for highlighting-kate 0.4.John MacFarlane2011-12-26
|/ | | | | | | | Text.Pandoc.Highlighting now exports just one new function, 'highlight', and reexports all the other functions from highlighting-kate that are used in the writers. This should make it easy to switch highlighting engines if that is ever desired.