2017-01-05 21:11:45 +01:00
< div class = "overlay-modal hide" id = "markdown-help" tabindex = "-1" role = "dialog"
2017-02-28 04:44:31 +01:00
aria-labelledby="markdown-help-label" aria-hidden="true">
< div class = "modal-body" >
< div id = "markdown-instructions" >
< table class = "table table-striped table-condensed table-rounded table-bordered help-table" >
< thead > < tr >
< th > {% trans %}You type{% endtrans %}< / th >
< th > {% trans %}You get{% endtrans %}< / th >
< / tr > < / thead >
2012-11-02 22:29:13 +01:00
2017-02-28 04:44:31 +01:00
< tbody >
< tr >
< td > *italic*< / td >
< td > < i > italic< / i > < / td >
< / tr >
< tr >
< td > **bold**< / td >
< td > < b > bold< / b > < / td >
< / tr >
< tr >
< td > ~~strikethrough~~< / td >
< td > < del > strikethrough< / del > < / td >
< / tr >
< tr >
< td > [Zulip website](https://zulip.org)< / td >
< td > < a href = "https://zulip.org" target = "_blank" > Zulip website< / a > < / td >
< / tr >
< tr >
< td > * Archimedes< br / >
* Bohr< br / >
* Curie
< / td >
< td >
< ul >
< li > Archimedes< / li >
< li > Bohr< / li >
< li > Curie< / li >
< / ul >
< / td >
< / tr >
< tr >
< td > :heart: (and < a href = "http://www.emoji-cheat-sheet.com/" target = "_blank" > many others< / a > , from the < a href = "https://code.google.com/p/noto/" license = "/static/generated/emoji/images/emoji/NOTICE" target = "_blank" > Noto Project< / a > )< / td >
< td > < img alt = ":heart:" class = "emoji" src = "/static/generated/emoji/images/emoji/heart.png" title = ":heart:" / > < / td >
< / tr >
< tr >
< td > @**Joe Smith**< br / >
(autocompletes from @joe)< / td >
< td > < span class = "user-mention" > @Joe Smith< / span > (notifies Joe Smith)< / td >
< / tr >
< tr >
< td > @**all**< / td >
< td > < span class = "user-mention" > @all< / span > (notifies all recipients)< / td >
< / tr >
< tr >
< td > #**streamName**< / td >
< td > < a > #streamName< / a > (links to a stream)< / td >
< / tr >
< tr >
< td > Some inline `code`< / td >
< td > Some inline < code > code< / code > < / td >
< / tr >
< tr >
< td class = "preserve_spaces" > ```
2013-07-10 22:14:08 +02:00
def zulip():
2017-02-21 20:44:43 +01:00
print "Zulip"
2013-11-26 19:56:13 +01:00
```< / td >
2017-02-28 04:44:31 +01:00
< td > < pre > def zulip():
2017-02-21 20:44:43 +01:00
print "Zulip"< / pre > < / td >
2017-02-28 04:44:31 +01:00
< / tr >
< tr >
< td class = "preserve_spaces" > ``` .py
2013-07-10 22:14:08 +02:00
def zulip():
2017-02-21 20:44:43 +01:00
print "Zulip"
2013-11-26 19:56:13 +01:00
```< / td >
2017-02-28 04:44:31 +01:00
< td >
< div class = "codehilite" > < pre > < span class = "k" > def< / span > < span class = "nf" > zulip< / span > < span class = "p" > ():< / span >
2017-02-21 20:44:43 +01:00
< span class = "k" > print< / span > < span class = "s" > "Zulip"< / span > < / pre > < / div >
2017-02-28 04:44:31 +01:00
< / td >
< / tr >
< tr >
< td colspan = "2" > {% trans %}You can also make a code block by indenting each line with 4 spaces.{% endtrans %}< / td >
< / tr >
< tr >
< td > > Quoted< / td >
< td > < blockquote > Quoted< / blockquote > < / td >
2013-12-11 17:24:10 +01:00
2017-02-28 04:44:31 +01:00
< / tr >
< tr >
< td class = "preserve_spaces" > ``` quote
2013-12-11 17:24:10 +01:00
Quoted block
```< / td >
2017-02-28 04:44:31 +01:00
< td > < blockquote > < p > Quoted block< / p > < / blockquote > < / td >
< / tr >
< tr >
< td colspan = "2" > {% trans %}You can also make < a target = "_blank"
href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#wiki-tables">tables< / a >
with this < a target = "_blank"
href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#wiki-tables">Markdown-ish
2017-03-09 13:04:10 +01:00
table syntax< / a > .{% endtrans %}< / td >
2017-02-28 04:44:31 +01:00
< / tr >
< / tbody >
< / table >
< / div >
2012-11-02 22:29:13 +01:00
< / div >
< / div >