This note demonstrates some of what wordpress Markdown is capable of doing.
References
http://www.markitdown.net/markdown
http://en.support.wordpress.com/markdown-quick-reference/
https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
https://guides.github.com/features/mastering-markdown/
Markdown quick reference for wordpress
http://en.support.wordpress.com/markdown-quick-reference/
Special shortcodes can be embedded in email to configure the published post, e.g., [more]
, [delay +1 hour]
etc.
Emphasize emphasize
Strong Strong
A link.
Some text with a link and another link.
Images Inline-style:
Footnotes: I have more1 to say up here.
Lists
- Item
- Item
- Mixed 1
- Mixed 1
- Mixed 2
- Mixed 2
- Or minuses
- Or pluses
- Item
Break it apart.
- Unordered list nicely aligned but not properly rendered
- Or minuses
- Or minuses
- Or pluses
- Or pluses
Now,
- Unordered list properly rendered
- Mixed 1
- Mixed 1
- Mixed 2
- Mixed 2
- Or minuses
- Or pluses
- Back to level one
Preformatted
Begin each line with two spaces or more to make text look e x a c t l y like you type i t.
Code block
#button {
border: none;
}
http://en.support.wordpress.com/code/posting-source-code/
The following languages are supported:
- actionscript3
- bash
- clojure
- coldfusion
- cpp
- csharp
- css
- delphi
- erlang
- fsharp
- diff
- groovy
- html
- javascript
- java
- javafx
- matlab (keywords only)
- objc
- perl
- php
- text
- powershell
- python
- r
- ruby
- scala
- sql
- vb
- xml
Definition Lists
- WordPress
- A semantic personal publishing platform
- Markdown
- Text-to-HTML conversion tool
Abbreviations
Markdown converts text to HTML.
*[HTML]: HyperText Markup Language Definitions can be anywhere in the document
More Markdown Examples from Pandoc-Markdown
http://www.unexpected-vortices.com/sw/rippledoc/quick-markdown-example.html
Use 3 dashes for — an em-dash. Use 2 dashes for ranges (ex., “it’s all in chapters 12–14”). Three dots … will be converted to an ellipsis. Unicode is supported.
Inline math equations go in like so: $\omega = d\phi / dt$. Display math should get its own line and be put in in double-dollarsigns:
$$I = \int \rho R^{2} dV$$
And note that you can backslash-escape any punctuation characters which you wish to be displayed literally, ex.: `foo`, *bar*, etc.
Block quotes are written like so.
They can span multiple paragraphs, if you like.
Here’s a “line block”:
| Line one | Line too | Line tree
Tables can look like this:
size material color
9 leather brown 10 hemp canvas natural 11 glass transparent
Table: Shoes, their sizes, and what they’re made of
(The above is the caption for the table.) Pandoc also supports multi-line tables:
keyword text
red Sunsets, apples, and other red or reddish things.
green Leaves, grass, frogs and other things it’s not easy being.
[nextpage]
Emphasis
Emphasis, aka italics, with asterisks or underscores.
Strong emphasis, aka bold, with asterisks or underscores.
Combined emphasis with asterisks and underscores.
Strikethrough uses two tildes. Scratch this.
Lists
- First ordered list item
- Another item
- Unordered sub-list.
- Actual numbers don’t matter, just that it’s a number
- Ordered sub-list
- And another item.
You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we’ll use three here to also align the raw Markdown).
To have a line break without a paragraph, you will need to use two trailing spaces.
Note that this line is separate, but within the same paragraph.
(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
- Unordered list can use asterisks
- Or minuses
- Or pluses
URLs
URLs can be made in a handful of ways:
- http://github.com - automatic!
- A named link to MarkItDown. The easiest way to do these is to select what you want to make a link and hit
Ctrl+L
. - Another named link to MarkItDown
Some text to show that the reference links can follow later.
internal links / named anchors
For Markdown’s support for internal links / named anchors,
obvious solution is to place your own anchor point in the page wherever you like, thus:
before the line you want to ‘link’ to. Don’t forget the quotation marks around it. Then a markdown link like:
link text anywhere in the document takes you there.
It might be OK to put the anchor in the heading line you wish to link.
Images
Here’s our logo (hover to see the title text):
Inline-style:
Reference-style:
Code and Syntax Highlighting
Code blocks are part of the Markdown spec, but syntax highlighting isn’t. However, many renderers – like Github’s and Markdown Here – support syntax highlighting.
Inline code
has back-ticks around
it.
code blocks
Code blocks are very useful for developers and other people who look at code or other things that are written in plain text. As you can see, it uses a fixed-width font.
Blocks of code are either fenced by lines with three back-ticks ```, or are indented with four spaces. I recommend only using the fenced code blocks – they’re easier and only they support syntax highlighting.
var s = "JavaScript syntax highlighting";
alert(s);
s = "Python syntax highlighting"
print s
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
Blockquotes
Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.
Quote break.
This is a very long line that will still be quoted properly when it wraps. Oh boy let’s keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.
Inline HTML
You can also use raw HTML in your Markdown, and it’ll mostly work pretty well.
- Definition list
- Is something people use sometimes.
- Markdown in HTML
- Does *not* work **very** well. Use HTML tags.
Headings - H1, can also contain formatting
There are six levels of headings. They correspond with the six levels of HTML headings.
H2
H3
H4
H5
H6
[end]
everything after this shortcode is ignored (i.e. signatures). Make sure it’s on its own line with a blank line above it.