From df8e428ee2eb154d3bef04ff9c823479e61a853a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Fri, 20 Sep 2019 11:34:07 +0200 Subject: [PATCH] Extended simple markdown file --- example_docs/simple md/simple.md | 36 +++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/example_docs/simple md/simple.md b/example_docs/simple md/simple.md index fb7719a..8f8c5f1 100644 --- a/example_docs/simple md/simple.md +++ b/example_docs/simple md/simple.md @@ -1,6 +1,36 @@ # Really simple document -Boring content. Don't even read me! +First, have some items: -Another line, why are you still reading? -Seriously?! +- item 1 +- item 2 +- Another + +Behold, for there is jumbled mess ahead! + +1. This is +3. weirdly numbered +9. but pandoc doesn't care +2. it just works™ + +With the default HTML template, this does not translate: \textsl{Have some \LaTeX, too!} +Some math is fine with HTML: $x=5$, some other is not: $\sqrt{x}=2$. +However, both of these are fixable! + +Code blocks? Sure! + + while (energy <= 0.42) { + drinkCoffee(); + } + +Need syntax? Here you go! + +```c +#include + +int main() { + printf("Hello World!\n"); +} +``` + +For more awesome stuff, visit the pandoc manual: