Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-09-10 | Support `--reference-location` for HTML output (#7461) | Francesco Mazzoli | 1 | -1/+1 | |
The HTML writer now supports `EndOfBlock`, `EndOfSection`, and `EndOfDocument` for reference locations. EPUB and HTML slide show formats are also affected by this change. This works similarly to the markdown writer, but with special care taken to skipping section divs with what regards to the block level. The change also takes care to not modify the output if `EndOfDocument` is used. | |||||
2019-04-30 | HTML: prevent gratuitious emojification on iOS. | John MacFarlane | 1 | -1/+1 | |
iOS chooses to render a number of Unicode entities, including '↩', as big colorful emoji. This can be defeated by appending Unicode VARIATION SELECTOR-15'/'VARIATION SELECTOR-16'. So we now append this character when escaping strings, for both '↩' and '↔'. If other characters prove problematic, they can simply be added to needsVariationSelector. Closes #5469. | |||||
2019-02-02 | Update test for last commit. | John MacFarlane | 1 | -3/+3 | |
2018-01-09 | Fixed a test case so it works on windows too. | John MacFarlane | 1 | -1/+1 | |
2018-01-09 | HTML writer: Fixed footnote backlinks with --id-prefix. | John MacFarlane | 1 | -0/+12 | |
Closes #4235. |