- Apr 25, 2015
-
-
Raniere Silva authored
-
- Apr 04, 2015
-
-
Greg Wilson authored
-
- Feb 03, 2015
-
-
Greg Wilson authored
-
- Jan 31, 2015
-
-
François Michonneau authored
otherwise, during the html conversion the ul and li tags are not placed where they need to go.
-
- Jan 22, 2015
-
-
Greg Wilson authored
-
- Jan 19, 2015
-
-
Rémi Emonet authored
(DO NOT CLONE) added adapted version of motivation.md that uses the pandoc slide generator and the new swc style don't clone unless you know what you're doing (this commit will probably disappear)
-
- Dec 13, 2014
-
-
Greg Wilson authored
-
- Nov 16, 2014
-
-
Raniere Silva authored
The body variable at Pandoc template **must** not be indented because the indentation will propagate into the HTML. Example: $ cat page.html <!DOCTYPE html> <html> <body> $body$ </body> </html> $ pandoc -s -t html --template=page -o sample.html sample.md $ cat sample.html <!DOCTYPE html> <html> <body> <pre><code>def foo(): return None</code></pre> </body> </html> Solution: $ cat fix.html <!DOCTYPE html> <html> <body> $body$ </body> </html> $ pandoc -s -t html --template=fix -o sample-fix.html sample.md $ cat sample-fix.html <!DOCTYPE html> <html> <body> <pre><code>def foo(): return None</code></pre> </body> </html>
-
- Nov 11, 2014
-
-
Greg Wilson authored
Also modifed the Makefile to use the slides template for this file instead of the generic template. Note that we do not need a Markdown extension for deck.js because Pandoc is doing Markdown-to-HTML conversion for us.
-
Greg Wilson authored
-