# Markdown Markdown is supported in most places; inline Markdown in pros/cons (i.e. you can't create lists, paragraphs, etc) and ordinary Markdown elsewhere. If you haven't written Markdown before, see [this reference][Commonmark ref]. [Commonmark ref]: http://commonmark.org/help/ ## Custom features You can write `[pkg](@hk)` to get a link to package `pkg` on Hackage (the full list of shortcuts is [here][shortcuts]). [shortcuts]: https://hackage.haskell.org/package/shortcut-links/docs/ShortcutLinks-All.html If you mark snippets of code with `repl` (to show that they come from GHCi), they will display differently:
~~~~ ~~~ hs repl > 2+2 4 ~~~ ~~~~ |
→
| ~~~ hs repl > 2+2 4 ~~~ |
~~~~ ~~~ hs t :: Bool t = True ~~~ ~~~~ |
→
| ~~~ hs t :: Bool t = True ~~~ |