| MultiMarkdown | Result |
|---|---|
| This text is **bold**. | This text is bold. |
| This text is also __bold__. | This text is also bold. |
| This text is *italicized*. | This text is italicized. |
| This text is also _italicized_. | This text is also italicized. |
| `This is some code.` | This is some code. |
| This is a rather long section of code taking multiple lines |
This is a rather |
| MultiMarkdown | Result |
|---|---|
| Link to [Google](http://google.com). | Link to Google. |
| Link to <http://google.com>. | Link to http://google.com. |
| Link to [Google][] with attributes later in the document. Another Link to the [search engine][Google]. [Google]: http://google.com "The Google!" style="border: solid black 1px;" target="_blank" |
Link to Google with attributes later in the document. Another link to the search engine. |
| Send me an email at <address@example.com>. | Send me an email at address@example.com. |
| MultiMarkdown | Result |
|---|---|
| # First Header | First Header |
| ## Second Header ## | Second Header |
| ### Third Header | Third Header |
| MultiMarkdown | Result |
|---|---|
| Here is the a normal paragraph. > This is the first level of quoting. >> This is nested blockquote that runs onto the next line. > Back to the first level. Notice the spaces when we start a new paragraph or separate the different blockquotes. |
Here is the a normal paragraph.
Notice the spaces when we start a new paragraph or separate the different blockquotes. |
| MultiMarkdown | Result |
|---|---|
| This is the simplest example of an  embedded in a paragraph. | This is the simplest example of an embedded in a paragraph. |
| This is an image example with a title attribute  embedded in a paragraph. | This is an image example with a title attribute embedded in a paragraph. |
| This is the same image ![image3][] but with the attributes placed later on in the document. [image3]: mmd.png "This is where the title goes" height=22px width=60px |
This is the same image but with the attributes placed later on in the document. |
When an image is placed in a paragraph by itself, it is wrapped in a <figure> tag. ![This is the figure caption][fig_id] [fig_id]: mmd.png "This is where the title goes" height=45px width=120px |
When an image is placed in a paragraph, it is wrapped in a <figure> tag.
|
| MultiMarkdown | Result |
|---|---|
|
* Milk * Bread * Cheese * Cheddar * Camembert * Rice |
|
|
1. Milk 2. Bread 3. Cheese 1. Cheddar 2. Camembert 4. Rice |
|
| MultiMarkdown | Result | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Here is as example of [table][simple_table] followed by a more complex [example][reference_table] from the [documentation](https://github.com/fletcher/MultiMarkdown/wiki/MultiMarkdown-Syntax-Guide "MultiMarkdown Syntax Guide")| First Header | Second Header | Third Header | | :----------- | :-----------: | -------------------: | | First row | Data | Very long data entry | | Second row | **Cell** | *Cell* | [simple_table] | | Grouping || | First Header | Second Header | Third Header | | ------------ | :-----------: | -----------: | | Content | *Long Cell* || | Content | **Cell** | Cell | | New section | More | Data | [Prototype table][reference_table] |
Here is as example of table followed by a more complex example from the documentation
|
||||||||||||||||||||||||
| MultiMarkdown | Result |
|---|---|
| Here is some text containing a footnote[^somesamplefootnote]. You can then continue your thought... [^somesamplefootnote]: Here is the text of the footnote itself. Even go to a new paragraph and the footnotes with go to the bottom of the document[^documentdetails]. [^documentdetails]: Depending on the final form of your document, of course. See the documentation and experiment. This footnote has a second paragraph. |
Here is some text containing a footnote[1]. You can then continue your thought… Even go to a new paragraph and the footnotes with go to the bottom of the document[2]. |
| This is an example of an inline footnote.[^This is the *actual* footnote.] |
This is an example of an inline footnote.[1]
|
| MultiMarkdown | Result |
|---|---|
| You can place a link to a point in your document like this [one][], or [another][] place in the doc. ## one ## A simple subheading in a larger document with the same name as the referring tag. ## Another place in the document [another] ## Another place in the document that is referenced by the [another] tag in the heading |
You can place a link to a point in your document like this one or another place in the doc. oneA simple subheading in a larger document with the same name as the referring tag. Another place in the documentAnother place in the document that is referenced by the [another] tag in the heading |
| MultiMarkdown | Result |
|---|---|
| Let's cite a fake book.[p. 42][#fake] [#fake]: John Doe. *A Totally Fake Book*. Vanity Press, 2006. |
Let’s cite a fake book.[p. 42, 1]
|
| MultiMarkdown | Result |
|---|---|
When you are making you definitions you should note the white space.
Apple
: Pomaceous fruit of plants of the genus Malus in
the family Rosaceae.
Also the makers of really great products.
Banana
: 1. A delicious fruit that can be hazardous
if left on the ground.
2. A fruit that comes with it's own packaging
Orange
: The fruit of an evergreen tree of the genus Citrus.
|
When you are making you definitions you should note the white space.
|
| MultiMarkdown | Result |
|---|---|
| \\[ {e}^{i\pi }+1=0 \\] | |
| $${e}^{i\pi }+1=0$$ | |
| A formula, \\( {e}^{i\pi }+1=0 \\), inside a paragraph. | A formula, , inside a paragraph. |
| A formula, ${e}^{i\pi }+1=0$ , inside a paragraph. (Note space after the '$') | A formula, , inside a paragraph. |
| x^2,y | x2,y |
| x^2,y^ | x2,y |
| x~z,y | xz,y |
| x~z,y~ | xz,y |
| MultiMarkdown | Result |
|---|---|
| Let's reference a glossary term.[^glossary] [^glossary]:glossary: Glossary A section at the end ... |
Let’s reference a glossary term.[1]
|
| MultiMarkdown | Result |
|---|---|
| This is {--is --}a test. | This is |
| This {++is ++}a test. | This is a test. |
| This {~~isn't~>is~~} a test. | This |
| This is a {==test==}. | This is a test. |
| This is a test{>>What is it a test of?<<}. | This is a test. |
| MultiMarkdown | Result |
|---|---|
| ``` This is a fenced code block ``` | |
| ```perl # Demonstrate Syntax Highlighting if you link to highlight.js # # http://softwaremaniacs.org/soft/highlight/en/ print "Hello, world!\n"; $a = 0; while ($a < 10) { print "$a...\n"; $a++; } ``` | |
| MultiMarkdown | Result |
|---|---|
| foo: bar Let's make a reference to [%foo] | Let’s make a reference to bar |
MultiMarkdown Syntax Guide
https://github.com/fletcher/human-markdown-reference
Based on the Human Markdown Reference by Édouard Brière.
https://github.com/edouard/human-markdown-reference
Modified for MultiMarkdown syntax by the MMD Community.
For the first interaction examples were used from the following websites.