Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-08-07 | Updated readers, writers and README for link attribute | mb21 | 1 | -2/+2 | |
2015-08-07 | Updated readers and writers for new image attribute parameter. | John MacFarlane | 1 | -6/+6 | |
(mb21) | |||||
2014-12-15 | FB2 writer: Add newline to output. | John MacFarlane | 1 | -1/+1 | |
2014-08-04 | Add PatternGuards pragmas. | Artyom Kazak | 1 | -0/+2 | |
2014-08-04 | Remove dangling `where` from one function. | Artyom Kazak | 1 | -1/+0 | |
2014-08-04 | Use `stripPrefix` where appropriate. | Artyom Kazak | 1 | -15/+14 | |
2014-08-03 | Correctly implement capitalisation. | Artyom Kazak | 1 | -8/+3 | |
Using `map toUpper` to capitalise text is wrong, as e.g. “Straße” should be converted to “STRASSE”, which is 1 character longer. This commit adds a `capitalize` function and replaces 2 identical implementations in different modules (`toCaps` and `capitalize`) with it. | |||||
2014-01-02 | Use isHeaderBlock from Shared rather than defining it anew... | John MacFarlane | 1 | -4/+2 | |
2013-08-10 | Use walk, walkM in place of bottomUp, bottomUpM when possible. | John MacFarlane | 1 | -2/+6 | |
They are significantly faster. | |||||
2013-08-08 | Preliminary support for new Div and Span elements in writers. | John MacFarlane | 1 | -0/+3 | |
Currently these are "transparent" containers, except in HTML, where they produce div and span elements with attributes. | |||||
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/+3 | |
* 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-09 | Added Attr field to Header. | John MacFarlane | 1 | -6/+6 | |
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. | |||||
2012-07-26 | Moved WriterOptions and associated types Shared -> Options. | John MacFarlane | 1 | -5/+5 | |
2012-07-22 | FB2: support images embedded as data URIs + tests. | Sergey Astanin | 1 | -12/+58 | |
2012-07-22 | Added a new FictionBook2 (FB2) writer. | Sergey Astanin | 1 | -0/+570 | |