* Markdown This wiki's pages are written in [[http://pandoc.org][pandoc]]'s extended form of [[http://daringfireball.net/projects/markdown][markdown]]. If you're not familiar with markdown, you should start by looking at the [[http://daringfireball.net/projects/markdown/basics][markdown "basics" page]] and the [[http://daringfireball.net/projects/markdown/syntax][markdown syntax description]]. Consult the [[http://pandoc.org/README.html][pandoc User's Guide]] for information about pandoc's syntax for footnotes, tables, description lists, and other elements not present in standard markdown. Markdown is pretty intuitive, since it is based on email conventions. Here are some examples to get you started: #+BEGIN_HTML
#+END_HTML =*emphasized text*= #+BEGIN_HTML | #+END_HTML /emphasized text/ #+BEGIN_HTML |
#+END_HTML =**strong emphasis**= #+BEGIN_HTML | #+END_HTML *strong emphasis* #+BEGIN_HTML |
#+END_HTML =`literal text`= #+BEGIN_HTML | #+END_HTML =literal text= #+BEGIN_HTML |
#+END_HTML =\*escaped special characters\*= #+BEGIN_HTML | #+END_HTML *escaped special characters* #+BEGIN_HTML |
#+END_HTML =[external link](http://google.com)= #+BEGIN_HTML | #+END_HTML [[http://google.com][external link]] #+BEGIN_HTML |
#+END_HTML == #+BEGIN_HTML | #+END_HTML [[/img/icons/folder.png]] #+BEGIN_HTML |
#+END_HTML Wikilink: =[Front Page]()= #+BEGIN_HTML | #+END_HTML Wikilink: [[][Front Page]] #+BEGIN_HTML |
#+END_HTML =H~2~O= #+BEGIN_HTML | #+END_HTML H_{2}O #+BEGIN_HTML |
#+END_HTML =10^100^= #+BEGIN_HTML | #+END_HTML 10^{100} #+BEGIN_HTML |
#+END_HTML =~~strikeout~~= #+BEGIN_HTML | #+END_HTML +strikeout+ #+BEGIN_HTML |
#+END_HTML =$x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$= #+BEGIN_HTML | #+END_HTML $x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$ [1] #+BEGIN_HTML |
#+END_HTML =A simple footnote.^[Or is it so simple?]= #+BEGIN_HTML | #+END_HTML A simple footnote. [2] #+BEGIN_HTML |
> an indented paragraph, > usually used for quotations |
#+END_HTML #+BEGIN_QUOTE an indented paragraph, usually used for quotations #+END_QUOTE #+BEGIN_HTML |
#!/bin/sh -e # code, indented four spaces echo "Hello world" |
#+END_HTML #+BEGIN_EXAMPLE #!/bin/sh -e # code, indented four spaces echo "Hello world" #+END_EXAMPLE #+BEGIN_HTML |
* a bulleted list * second item - sublist - and more * back to main list 1. this item has an ordered 2. sublist a) you can also use letters b) another item |
#+END_HTML - a bulleted list - second item - sublist - and more - back to main list 1. this item has an ordered 2. sublist 1) you can also use letters 2) another item #+BEGIN_HTML |
Fruit Quantity -------- ----------- apples 30,200 oranges 1,998 pears 42 Table: Our fruit inventory |
#+END_HTML | Fruit | Quantity | |-----------+------------| | apples | 30,200 | | oranges | 1,998 | | pears | 42 | #+CAPTION: Our fruit inventory #+BEGIN_HTML |