diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-08-14 23:05:09 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-08-14 23:17:44 -0700 |
commit | 892a4edeb1c9b9810c8386e639d8e457bbae7e86 (patch) | |
tree | c9de220c7cef5e6f52fdc282fb2c361533626f00 /test/s5-inserts.html | |
parent | 23d29ee10cb93143f48aca6aa6ebb6afc09af797 (diff) | |
download | pandoc-892a4edeb1c9b9810c8386e639d8e457bbae7e86.tar.gz |
Implement multicolumn support for slide formats.
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
Diffstat (limited to 'test/s5-inserts.html')
-rw-r--r-- | test/s5-inserts.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/s5-inserts.html b/test/s5-inserts.html index 97c8de384..a3c3a7886 100644 --- a/test/s5-inserts.html +++ b/test/s5-inserts.html @@ -12,6 +12,7 @@ code{white-space: pre-wrap;} .smallcaps{font-variant: small-caps;} .line-block{white-space: pre-line;} + .column{display: inline-block;} </style> <link rel="stylesheet" href="main.css" type="text/css" /> STUFF INSERTED |