summaryrefslogtreecommitdiff
path: root/test/s5-fancy.html
Commit message (Collapse)AuthorAge
* HTML writer: Use br elements in line blocks...John MacFarlane2017-12-26
| | | | | | | | instead of relying on CSS. Closes #4162. HTML-based templates have had the custom CSS for div.line-block removed. Those maintaining custom templates will want to remove this too. We still enclose line blocks in a div with class line-block.
* Include default CSS for 'underline' class in HTML-based templates.John MacFarlane2017-12-03
|
* Improved support for columns in HTML.John MacFarlane2017-11-02
| | | | | | | | | | * Move as much as possible to the CSS in the template. * Ensure that all the HTML-based templates (including epub) contain the CSS for columns. * Columns default to 50% width unless they are given a width attribute. Closes #4028.
* HTML Writer: consistently use dashed class-namesmb212017-10-31
| | | | see #3556
* Implement multicolumn support for slide formats.John MacFarlane2017-08-14
| | | | | | | | | | | | | | | | | | | | | | The structure expected is: <div class="columns"> <div class="column" width="40%"> contents... </div> <div class="column" width="60%"> contents... </div> </div> Support has been added for beamer and all HTML slide formats. Closes #1710. Note: later we could add a more elegant way to create this structure in Markdown than to use raw HTML div elements. This would come for free with a "native div syntax" (#168). Or we could devise something specific to slides
* HTML line block: Use class instead of style attribute.John MacFarlane2017-04-25
| | | | | | | | | We now issue `<div class="line-block">` and include a default definition for `line-block` in the default templates, instead of hard-coding a `style` on the div. Closes #1623.
* Regularized CSS in html/epub/html slide templates.John MacFarlane2017-03-04
| | | | | | | | | | All templates now include `code{white-space: pre-wrap}` and CSS for `q` if `--html-q-tags` is used. Previously some templates had `pre` and others `pre-wrap`; the `q` styles were only sometimes included. See #3485.
* templates: CSS for .smallcaps, closes #1592 (#3485)Mauro Bieg2017-03-04
|
* Moved tests/ -> test/.John MacFarlane2017-02-04