Wiki
Home

Pandoc

- <http://pandoc.org/demos.html>
- <http://gitit.net/Pandoc%20Citations>

LaTeX

- Sprache setzen: `pandoc -V lang=dutch somefile.markdown`

Tabellen

- <http://www.cirosantilli.com/markdown-style-guide/#tables>
  
  ```markdown
  | h    | Long header |
  |------|-------------|
  | abc  | def         |
  | abc2 | def2        |
  ```
- Vim Tabularize Plugin: `:'<,'>Tabularize /|/`

Zitieren

- <http://pandoc.org/MANUAL.html#citations>

Snippets

- Convert all files in a directory
- ```bash
  find ./ -iname "*.wiki" -type f -exec sh -c 'pandoc  "${0}" -t markdown -o "${0%.wiki}.md"' {} \;
  ```