summaryrefslogtreecommitdiff
path: root/test/writer.fb2
Commit message (Collapse)AuthorAge
* FB2 writer: Add "unrecognised" genre to <title-info>Alexander Krotov2017-11-01
| | | | XML schema requires at least one genre.
* FB2 writer: remove <annotation> from <body>Alexander Krotov2017-11-01
| | | | | | <annotation> is not allowed inside <body> according to FictionBook2 XML schema. Besides that, the same information is already placed inside <description>. Related bug: #2424
* Merge pull request #4008 from labdsf/fb2-bulletsJohn MacFarlane2017-11-01
|\ | | | | FB2 writer: make bullet lists consistent with ordered lists
| * FB2 writer: make bullet lists consistent with ordered listsAlexander Krotov2017-10-31
| | | | | | | | | | | | | | | | | | Previously bullet lists interacted in odd way with ordered lists. For example, bullet lists nested in ordered list had incorrect indentation. Besides that, indentation with spaces is not rendered by FBReader and fbless. To avoid this problem, bullet lists are indented by appending bullets to marker just the same way it is done for ordered lists.
* | FB2 writer: write blocks outside of <p> in definitionsAlexander Krotov2017-10-31
|/
* Write FB2 lists without nesting blocks inside <p> (#4004)Alexander2017-10-29
| | | | | | | | | | | | According to FB2 XML schema <empty-line /> cannot be placed inside <p>. Linux FBReader can't display such paragraphs, e.g. any "loose" lists produced by pandoc prior to this commit. Besides that, FB2 writer placed <p> inside <p> when writing nested lists, this commit fixes the bug. Also this commit removes leading non-breaking space from ordered lists for consistency with bullet lists. Definition lists are not affected at all.
* Added `spaced_reference_links` extension.John MacFarlane2017-05-25
| | | | | | | | | | | | | | This is now the default for pandoc's Markdown. It allows whitespace between the two parts of a reference link: e.g. [a] [b] [b]: url This is now forbidden by default. Closes #2602.
* Added warnings for non-rendered blocks to some writers.John MacFarlane2017-02-17
|
* Moved tests/ -> test/.John MacFarlane2017-02-04