2019-09-20 08:29:54 +00:00
|
|
|
# Really simple document
|
|
|
|
|
|
2019-09-20 09:34:07 +00:00
|
|
|
First, have some items:
|
2019-09-20 08:29:54 +00:00
|
|
|
|
2019-09-20 09:34:07 +00:00
|
|
|
- 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 <stdio.h>
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
printf("Hello World!\n");
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
For more awesome stuff, visit the pandoc manual: <https://pandoc.org/MANUAL.html#pandocs-markdown>
|