2012-11-05 16:57:52 +01:00
< div class = "modal hide" id = "markdown-help" tabindex = "-1" role = "dialog"
2012-11-02 22:29:13 +01:00
aria-labelledby="markdown-help-label" aria-hidden="true">
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-hidden = "true" > × < / button >
2012-11-29 18:06:51 +01:00
< h3 id = "markdown-help-label" > Message formatting< / h3 >
2012-11-02 22:29:13 +01:00
< / div >
< div class = "modal-body" >
< div id = "markdown-instructions" >
2012-11-29 18:44:43 +01:00
< table class = "table table-striped table-condensed table-rounded table-bordered" id = "fmt_help_table" >
2012-11-29 17:22:00 +01:00
< thead > < tr >
2012-11-02 22:29:13 +01:00
< th > You type< / th >
2013-07-09 22:02:04 +02:00
< th > You get< / th >
2012-11-29 17:22:00 +01:00
< / tr > < / thead >
2012-11-02 22:29:13 +01:00
2012-11-29 17:22:00 +01:00
< tbody >
2012-11-02 22:29:13 +01:00
< tr >
2013-06-05 00:29:25 +02:00
< td > **bold**< / td >
2013-07-09 22:02:04 +02:00
< td > < b > bold< / b > < / td >
2012-11-02 22:29:13 +01:00
< / tr >
< tr >
2013-07-10 22:14:08 +02:00
< td > [Zulip](http://zulip.com)< / td >
< td > < a href = "http://zulip.com" target = "_blank" > Zulip< / a > < / td >
2012-11-02 22:29:13 +01:00
< / tr >
< tr >
2013-07-09 22:05:14 +02:00
< td > * Archimedes< br / >
* Bohr< br / >
* Curie
2013-07-09 22:02:04 +02:00
< / td >
2012-11-02 22:29:13 +01:00
< td >
< ul >
2013-07-09 22:05:14 +02:00
< li > Archimedes< / li >
< li > Bohr< / li >
< li > Curie< / li >
2013-07-09 22:02:04 +02:00
< / ul >
2013-06-05 00:29:25 +02:00
< / td >
2012-11-02 22:29:13 +01:00
< / tr >
< tr >
2014-02-24 20:09:15 +01:00
< 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/third/gemoji/images/emoji/NOTICE" > Noto Project< / a > )< / td >
2013-12-17 17:37:28 +01:00
< td > < img alt = ":heart:" class = "emoji" src = "static/third/gemoji/images/emoji/heart.png" title = ":heart:" / > < / td >
2013-12-11 17:24:10 +01:00
< / 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 >
2012-11-02 22:29:13 +01:00
< / tr >
< tr >
2013-06-05 00:29:25 +02:00
< td > Some inline `code`< / td >
2013-07-09 22:02:04 +02:00
< td > Some inline < code > code< / code > < / td >
2012-11-02 22:29:13 +01:00
< / tr >
< tr >
2013-11-26 19:56:13 +01:00
< td class = "preserve_spaces" > ```
2013-07-10 22:14:08 +02:00
def zulip():
print "Zulip"
2013-11-26 19:56:13 +01:00
```< / td >
2013-07-10 22:14:08 +02:00
< td > < pre > def zulip():
print "Zulip"< / pre > < / td >
2012-11-02 22:29:13 +01:00
< / tr >
2012-11-19 18:53:43 +01:00
< tr >
2013-11-26 19:56:13 +01:00
< td class = "preserve_spaces" > ``` .py
2013-07-10 22:14:08 +02:00
def zulip():
print "Zulip"
2013-11-26 19:56:13 +01:00
```< / td >
2013-07-09 22:02:04 +02:00
< td >
2013-07-10 22:14:08 +02:00
< div class = "codehilite" > < pre > < span class = "k" > def< / span > < span class = "nf" > zulip< / span > < span class = "p" > ():< / span >
< span class = "k" > print< / span > < span class = "s" > "Zulip"< / span > < / pre > < / div >
2013-07-09 22:02:04 +02:00
< / td >
2012-11-19 18:53:43 +01:00
< / tr >
2013-03-02 22:15:44 +01:00
< tr >
< td colspan = "2" > You can also make a code block by indenting each line with 4 spaces.< / td >
< / tr >
< tr >
2013-12-11 17:24:10 +01:00
< td > > Quoted< / td >
< td > < blockquote > Quoted< / blockquote > < / td >
2013-03-02 22:15:44 +01:00
< / tr >
2013-06-05 00:35:50 +02:00
< tr >
2013-12-11 17:24:10 +01:00
< td class = "preserve_spaces" > ``` quote
Quoted block
```< / td >
< td > < blockquote > < p > Quoted block< / p > < / blockquote > < / td >
2013-06-05 00:35:50 +02:00
< / tr >
2014-01-10 23:33:13 +01:00
< tr >
< td colspan = "2" > 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
table syntax< / a > .< / td >
< / tr >
2012-11-29 17:22:00 +01:00
< / tbody >
2012-11-02 22:29:13 +01:00
< / table >
< / div >
< / div >
< div class = "modal-footer" >
< button class = "btn btn-primary" data-dismiss = "modal" aria-hidden = "true" > Close< / button >
< / div >
< / div >