├── source ├── a-text │ ├── g.txt │ ├── i.txt │ ├── h.txt │ ├── j.txt │ ├── l.txt │ ├── m.txt │ ├── n.txt │ ├── o.txt │ ├── p.txt │ ├── q.txt │ ├── a.txt │ ├── e.txt │ ├── k.txt │ ├── b.txt │ ├── c.txt │ ├── g.html │ ├── h.html │ ├── i.html │ ├── o.html │ ├── p.html │ ├── q.html │ ├── d.txt │ ├── n.html │ ├── l.html │ ├── m.html │ ├── e.html │ ├── a.html │ ├── c.html │ ├── k.html │ ├── b.html │ ├── d.html │ ├── j.html │ ├── f.txt │ └── f.html ├── horizontal-rules │ ├── 1.txt │ ├── 3.txt │ ├── 2.txt │ ├── 5.txt │ ├── 6.txt │ ├── 1.html │ ├── 2.html │ ├── 3.html │ ├── 4.html │ ├── 4.txt │ ├── 5.html │ └── 6.html ├── headings │ ├── 1.txt │ ├── 2.txt │ ├── 4.txt │ ├── 5.txt │ ├── 3.txt │ ├── 1.html │ ├── 2.html │ ├── 4.html │ ├── 5.html │ └── 3.html ├── linebreaks │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 1.html │ ├── 2.html │ └── 3.html ├── links │ ├── 7.txt │ ├── 1.txt │ ├── 6.txt │ ├── 4.txt │ ├── 1.html │ ├── 3.html │ ├── 3.txt │ ├── 4.html │ ├── 2.html │ ├── 2.txt │ ├── 6.html │ ├── 5.txt │ ├── 5.html │ └── 7.html ├── math │ ├── 3.txt │ ├── 4.txt │ ├── 2.txt │ ├── 1.txt │ ├── 3.html │ ├── 4.html │ ├── 1.html │ └── 2.html ├── raw-source │ ├── 4.html │ ├── 1.html │ ├── 1.txt │ ├── 2.html │ ├── 3.html │ ├── 4.txt │ ├── 3.txt │ └── 2.txt ├── html-blocks │ ├── aa.html │ ├── aa.txt │ ├── ba.txt │ ├── ab.html │ ├── bb.html │ ├── ab.txt │ ├── ad.html │ ├── ba.html │ ├── bb.txt │ ├── ad.txt │ ├── bd.txt │ ├── ac.txt │ ├── ae.txt │ ├── bc.txt │ ├── bd.html │ ├── be.txt │ ├── ac.html │ ├── ae.html │ ├── bc.html │ └── be.html ├── metadata │ ├── 1.html │ └── 1.txt ├── transclusion │ ├── 1.txt │ ├── 2.txt │ ├── filename.md │ ├── 1.html │ ├── filename.html │ └── 2.html ├── criticmarkup │ ├── 1.txt │ ├── 4.txt │ ├── 2.txt │ ├── 3.txt │ ├── 1.html │ ├── 2.html │ ├── 4.html │ ├── 5.txt │ ├── 3.html │ └── 5.html ├── images │ ├── 1.txt │ ├── 1.html │ ├── 2.txt │ ├── 2.html │ ├── 3.txt │ ├── 3.html │ ├── 4.txt │ └── 4.html ├── footnotes │ ├── 2.txt │ ├── 1.txt │ ├── 1.html │ └── 2.html ├── lists │ ├── 1.txt │ ├── 2.txt │ ├── 1.html │ └── 2.html ├── abbreviations │ ├── 2.txt │ ├── 1.txt │ ├── 2.html │ └── 1.html ├── variables │ ├── 1.html │ └── 1.txt ├── fenced-code-blocks │ ├── 1.txt │ ├── 1.html │ ├── 2.txt │ └── 2.html ├── citations │ ├── 2.txt │ ├── 1.txt │ ├── 1.html │ └── 2.html ├── tables │ ├── 1.txt │ ├── 2.txt │ ├── 1.html │ └── 2.html ├── table-of-contents │ ├── 1.txt │ └── 1.html ├── cross-references │ ├── 1.txt │ └── 1.html ├── blockquotes │ ├── 1.txt │ └── 1.html ├── glossary │ ├── 2.txt │ ├── 1.txt │ ├── 1.html │ └── 2.html └── definition-lists │ ├── 1.txt │ └── 1.html ├── .gitignore ├── templates ├── table-footer.txt ├── table-header.txt ├── footer.txt └── header.txt ├── mmd.png ├── javascripts ├── guide.js └── jquery-1.4.2.min.js ├── scripts └── make_index ├── Makefile ├── README.md ├── css └── markdown-reference.css └── index.html /source/a-text/g.txt: -------------------------------------------------------------------------------- 1 | m^2 -------------------------------------------------------------------------------- /source/a-text/i.txt: -------------------------------------------------------------------------------- 1 | x~z -------------------------------------------------------------------------------- /source/a-text/h.txt: -------------------------------------------------------------------------------- 1 | x^2,y^ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /source/a-text/j.txt: -------------------------------------------------------------------------------- 1 | C~6~H~12~O~6~ -------------------------------------------------------------------------------- /source/a-text/l.txt: -------------------------------------------------------------------------------- 1 | "smart quotes" -------------------------------------------------------------------------------- /source/a-text/m.txt: -------------------------------------------------------------------------------- 1 | 'smart quotes' -------------------------------------------------------------------------------- /source/a-text/n.txt: -------------------------------------------------------------------------------- 1 | apostrophe's -------------------------------------------------------------------------------- /source/a-text/o.txt: -------------------------------------------------------------------------------- 1 | en -- dash -------------------------------------------------------------------------------- /source/a-text/p.txt: -------------------------------------------------------------------------------- 1 | em --- dash -------------------------------------------------------------------------------- /source/a-text/q.txt: -------------------------------------------------------------------------------- 1 | ellipsis ... -------------------------------------------------------------------------------- /source/horizontal-rules/1.txt: -------------------------------------------------------------------------------- 1 | --- -------------------------------------------------------------------------------- /source/horizontal-rules/3.txt: -------------------------------------------------------------------------------- 1 | **** -------------------------------------------------------------------------------- /source/headings/1.txt: -------------------------------------------------------------------------------- 1 | # H1 Header 2 | -------------------------------------------------------------------------------- /source/horizontal-rules/2.txt: -------------------------------------------------------------------------------- 1 | - - - -------------------------------------------------------------------------------- /source/horizontal-rules/5.txt: -------------------------------------------------------------------------------- 1 | ______ -------------------------------------------------------------------------------- /source/horizontal-rules/6.txt: -------------------------------------------------------------------------------- 1 | _ _ _ _ -------------------------------------------------------------------------------- /source/linebreaks/1.txt: -------------------------------------------------------------------------------- 1 | foo 2 | bar -------------------------------------------------------------------------------- /source/linebreaks/2.txt: -------------------------------------------------------------------------------- 1 | foo 2 | bar -------------------------------------------------------------------------------- /source/linebreaks/3.txt: -------------------------------------------------------------------------------- 1 | foo\ 2 | bar -------------------------------------------------------------------------------- /source/links/7.txt: -------------------------------------------------------------------------------- 1 | <foo@example.com> -------------------------------------------------------------------------------- /source/math/3.txt: -------------------------------------------------------------------------------- 1 | \\[{e}^{i\pi }+1=0\\] -------------------------------------------------------------------------------- /source/math/4.txt: -------------------------------------------------------------------------------- 1 | $${e}^{i\pi }+1=0$$ -------------------------------------------------------------------------------- /source/raw-source/4.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /source/a-text/a.txt: -------------------------------------------------------------------------------- 1 | This text is **bold**. -------------------------------------------------------------------------------- /source/a-text/e.txt: -------------------------------------------------------------------------------- 1 | `This is some code.` -------------------------------------------------------------------------------- /source/a-text/k.txt: -------------------------------------------------------------------------------- 1 | Escaped characters -- \& -------------------------------------------------------------------------------- /source/headings/2.txt: -------------------------------------------------------------------------------- 1 | ## H2 Header ## 2 | -------------------------------------------------------------------------------- /source/horizontal-rules/1.html: -------------------------------------------------------------------------------- 1 |Content
2 | -------------------------------------------------------------------------------- /source/raw-source/1.html: -------------------------------------------------------------------------------- 1 |*foo*
2 | -------------------------------------------------------------------------------- /source/raw-source/1.txt: -------------------------------------------------------------------------------- 1 | `*foo*`{=html} 2 | -------------------------------------------------------------------------------- /source/raw-source/2.html: -------------------------------------------------------------------------------- 1 | *foo* 2 | 3 | -------------------------------------------------------------------------------- /source/raw-source/3.html: -------------------------------------------------------------------------------- 1 | *foo* 2 | 3 | -------------------------------------------------------------------------------- /source/raw-source/4.txt: -------------------------------------------------------------------------------- 1 | `*foo*`{=latex} 2 | -------------------------------------------------------------------------------- /source/transclusion/1.txt: -------------------------------------------------------------------------------- 1 | {{filename.md}} -------------------------------------------------------------------------------- /source/transclusion/2.txt: -------------------------------------------------------------------------------- 1 | {{filename.*}} -------------------------------------------------------------------------------- /source/a-text/b.txt: -------------------------------------------------------------------------------- 1 | This text is also __bold__. -------------------------------------------------------------------------------- /source/a-text/c.txt: -------------------------------------------------------------------------------- 1 | This text is *italicized*. -------------------------------------------------------------------------------- /source/a-text/g.html: -------------------------------------------------------------------------------- 1 |m2
2 | -------------------------------------------------------------------------------- /source/a-text/h.html: -------------------------------------------------------------------------------- 1 |x2,y
2 | -------------------------------------------------------------------------------- /source/a-text/i.html: -------------------------------------------------------------------------------- 1 |xz
2 | -------------------------------------------------------------------------------- /source/a-text/o.html: -------------------------------------------------------------------------------- 1 |en – dash
2 | -------------------------------------------------------------------------------- /source/a-text/p.html: -------------------------------------------------------------------------------- 1 |em — dash
2 | -------------------------------------------------------------------------------- /source/a-text/q.html: -------------------------------------------------------------------------------- 1 |ellipsis …
2 | -------------------------------------------------------------------------------- /source/criticmarkup/1.txt: -------------------------------------------------------------------------------- 1 | This {++is ++}a test. -------------------------------------------------------------------------------- /source/criticmarkup/4.txt: -------------------------------------------------------------------------------- 1 | This is a {==test==}. -------------------------------------------------------------------------------- /source/headings/4.txt: -------------------------------------------------------------------------------- 1 | H1 Header 2 | ========= -------------------------------------------------------------------------------- /source/headings/5.txt: -------------------------------------------------------------------------------- 1 | H2 Header 2 | --------- -------------------------------------------------------------------------------- /source/html-blocks/aa.txt: -------------------------------------------------------------------------------- 1 | <div>*bar*</div> -------------------------------------------------------------------------------- /source/html-blocks/ba.txt: -------------------------------------------------------------------------------- 1 | <del>*bar*</del> -------------------------------------------------------------------------------- /source/images/1.txt: -------------------------------------------------------------------------------- 1 | Image -  -------------------------------------------------------------------------------- /source/linebreaks/1.html: -------------------------------------------------------------------------------- 1 |foo 2 | bar
3 | -------------------------------------------------------------------------------- /source/raw-source/3.txt: -------------------------------------------------------------------------------- 1 | ```{=*} 2 | *foo* 3 | ``` -------------------------------------------------------------------------------- /source/a-text/d.txt: -------------------------------------------------------------------------------- 1 | This itext is also _italicized_. -------------------------------------------------------------------------------- /source/a-text/n.html: -------------------------------------------------------------------------------- 1 |apostrophe’s
2 | -------------------------------------------------------------------------------- /source/criticmarkup/2.txt: -------------------------------------------------------------------------------- 1 | This is {--is --}a test. -------------------------------------------------------------------------------- /source/criticmarkup/3.txt: -------------------------------------------------------------------------------- 1 | This {~~isn't~>is~~} a test. -------------------------------------------------------------------------------- /source/html-blocks/ab.html: -------------------------------------------------------------------------------- 1 |foo
2 | bar
foo
2 | bar
“smart quotes”
2 | -------------------------------------------------------------------------------- /source/a-text/m.html: -------------------------------------------------------------------------------- 1 |‘smart quotes’
2 | -------------------------------------------------------------------------------- /source/footnotes/2.txt: -------------------------------------------------------------------------------- 1 | Text.[^This is an inline footnote.] -------------------------------------------------------------------------------- /source/headings/3.txt: -------------------------------------------------------------------------------- 1 | # Header with custom id [custom] 2 | -------------------------------------------------------------------------------- /source/html-blocks/ab.txt: -------------------------------------------------------------------------------- 1 | <div> 2 | *bar* 3 | </div> -------------------------------------------------------------------------------- /source/html-blocks/ad.html: -------------------------------------------------------------------------------- 1 |bar
This is some code.
This text is bold.
2 | -------------------------------------------------------------------------------- /source/a-text/c.html: -------------------------------------------------------------------------------- 1 |This text is italicized.
2 | -------------------------------------------------------------------------------- /source/a-text/k.html: -------------------------------------------------------------------------------- 1 |Escaped characters – &
2 | -------------------------------------------------------------------------------- /source/criticmarkup/1.html: -------------------------------------------------------------------------------- 1 |This is a test.
2 | -------------------------------------------------------------------------------- /source/criticmarkup/2.html: -------------------------------------------------------------------------------- 1 |This is is a test.
This is a test.
2 | -------------------------------------------------------------------------------- /source/criticmarkup/5.txt: -------------------------------------------------------------------------------- 1 | This is a test.{>>What is it a test of?<<} -------------------------------------------------------------------------------- /source/html-blocks/ac.txt: -------------------------------------------------------------------------------- 1 | foo 2 | <div> 3 | *bar* 4 | </div> -------------------------------------------------------------------------------- /source/html-blocks/ae.txt: -------------------------------------------------------------------------------- 1 | <div> 2 | 3 | *bar* 4 | 5 | </div> -------------------------------------------------------------------------------- /source/html-blocks/bc.txt: -------------------------------------------------------------------------------- 1 | foo 2 | <del> 3 | *bar* 4 | </del> -------------------------------------------------------------------------------- /source/html-blocks/bd.html: -------------------------------------------------------------------------------- 1 |This text is also bold.
2 | -------------------------------------------------------------------------------- /source/a-text/d.html: -------------------------------------------------------------------------------- 1 |This itext is also italicized.
2 | -------------------------------------------------------------------------------- /source/a-text/j.html: -------------------------------------------------------------------------------- 1 |C6H12O6
2 | -------------------------------------------------------------------------------- /source/abbreviations/2.txt: -------------------------------------------------------------------------------- 1 | [>(HTML) Hypertext Markup Language] and HTML -------------------------------------------------------------------------------- /source/footnotes/1.txt: -------------------------------------------------------------------------------- 1 | Text.[^foot] 2 | 3 | [^foot]: This is a footnote. -------------------------------------------------------------------------------- /source/headings/3.html: -------------------------------------------------------------------------------- 1 |foo
2 | 3 |Image - 
(Variables defined in metadata.) bar
2 | -------------------------------------------------------------------------------- /source/html-blocks/ae.html: -------------------------------------------------------------------------------- 1 |bar
4 | 5 |foo
2 |
3 | bar
4 |
\[{e}^{i\pi }+1=0\]
2 | -------------------------------------------------------------------------------- /source/math/4.html: -------------------------------------------------------------------------------- 1 |\[{e}^{i\pi }+1=0\]
2 | -------------------------------------------------------------------------------- /source/transclusion/filename.md: -------------------------------------------------------------------------------- 1 | This is the content of the file `filename.md`. -------------------------------------------------------------------------------- /source/a-text/f.txt: -------------------------------------------------------------------------------- 1 | This is a longer 2 | section of code 3 | on multiple lines. -------------------------------------------------------------------------------- /source/abbreviations/1.txt: -------------------------------------------------------------------------------- 1 | HTML and HTML 2 | 3 | [>HTML]: Hypertext Markup Language -------------------------------------------------------------------------------- /source/html-blocks/be.html: -------------------------------------------------------------------------------- 1 |bar
4 | 5 |Link to MMD
-------------------------------------------------------------------------------- /source/links/3.html: -------------------------------------------------------------------------------- 1 |Link to MMD.
-------------------------------------------------------------------------------- /source/links/3.txt: -------------------------------------------------------------------------------- 1 | Link to [MMD][]. 2 | 3 | [MMD]: http://fletcherpenney.net/mmd -------------------------------------------------------------------------------- /source/links/4.html: -------------------------------------------------------------------------------- 1 |Link to MMD.
-------------------------------------------------------------------------------- /source/variables/1.txt: -------------------------------------------------------------------------------- 1 | foo: bar 2 | 3 | (Variables defined in metadata.) [%foo] -------------------------------------------------------------------------------- /mmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttscoff/MultiMarkdown-6-Syntax-Guide/master/mmd.png -------------------------------------------------------------------------------- /source/criticmarkup/3.html: -------------------------------------------------------------------------------- 1 |This isn’tis a test.
Link to MultiMarkdown.
-------------------------------------------------------------------------------- /source/links/2.txt: -------------------------------------------------------------------------------- 1 | Link to [MultiMarkdown][MMD]. 2 | 3 | [MMD]: http://fletcherpenney.net/mmd -------------------------------------------------------------------------------- /source/fenced-code-blocks/1.html: -------------------------------------------------------------------------------- 1 |This is a fenced
2 | code block.
3 |
4 |
--------------------------------------------------------------------------------
/source/transclusion/1.html:
--------------------------------------------------------------------------------
1 | This is the content of the file filename.md.
This is a longer
2 | section of code
3 | on multiple lines.
4 |
--------------------------------------------------------------------------------
/source/citations/2.txt:
--------------------------------------------------------------------------------
1 | Cite a source.[p. 42][#John Doe. *A Totally Fake Book*. Vanity Press, 2006.]
2 |
3 |
--------------------------------------------------------------------------------
/source/images/2.html:
--------------------------------------------------------------------------------
1 | Image with title - 
Link to http://fletcherpenney.net/mmd
-------------------------------------------------------------------------------- /source/math/1.html: -------------------------------------------------------------------------------- 1 |A formula, \({e}^{i\pi }+1=0\), inside a paragraph.
2 | -------------------------------------------------------------------------------- /source/math/2.html: -------------------------------------------------------------------------------- 1 |A formula, \({e}^{i\pi }+1=0\), inside a paragraph.
2 | -------------------------------------------------------------------------------- /source/tables/1.txt: -------------------------------------------------------------------------------- 1 | | foo | bar | 2 | | --- | --- | 3 | | foo | bar | 4 | | foo bar || 5 | [*caption*][id] -------------------------------------------------------------------------------- /source/criticmarkup/5.html: -------------------------------------------------------------------------------- 1 |This is a test.What is it a test of?
2 | -------------------------------------------------------------------------------- /source/links/5.txt: -------------------------------------------------------------------------------- 1 | Link to [MMD]. 2 | 3 | [MMD]: http://fletcherpenney.net/mmd style="border: solid black 1px;" -------------------------------------------------------------------------------- /source/transclusion/filename.html: -------------------------------------------------------------------------------- 1 | This is the content of the file `filename.html`, since we are creating HTML. -------------------------------------------------------------------------------- /source/links/5.html: -------------------------------------------------------------------------------- 1 |Link to MMD.
-------------------------------------------------------------------------------- /source/table-of-contents/1.txt: -------------------------------------------------------------------------------- 1 | # Table of Contents # 2 | 3 | {{TOC}} 4 | 5 | # Intro # 6 | 7 | # Conclusion # 8 | -------------------------------------------------------------------------------- /source/images/3.txt: -------------------------------------------------------------------------------- 1 | Image with attributes - ![image]. 2 | 3 | [image]: mmd.png "This is a title" height=22px width=60px -------------------------------------------------------------------------------- /source/abbreviations/2.html: -------------------------------------------------------------------------------- 1 |Hypertext Markup Language (HTML) and HTML
2 | -------------------------------------------------------------------------------- /source/citations/1.txt: -------------------------------------------------------------------------------- 1 | Cite a source.[p. 42][#source] 2 | 3 | [#source]: John Doe. *A Totally Fake Book*. Vanity Press, 2006. -------------------------------------------------------------------------------- /source/cross-references/1.txt: -------------------------------------------------------------------------------- 1 | # Intro # 2 | 3 | # Conclusion [fin] # 4 | 5 | Link to [Intro]. 6 | 7 | Link to the [end][fin]. -------------------------------------------------------------------------------- /source/transclusion/2.html: -------------------------------------------------------------------------------- 1 |This is the content of the file filename.html, since we are creating HTML.
Image with attributes -
.
Hypertext Markup Language (HTML) and HTML
2 | -------------------------------------------------------------------------------- /source/definition-lists/1.txt: -------------------------------------------------------------------------------- 1 | Apple 2 | : Pomaceous fruit of plants of the genus Malus in 3 | the family Rosaceae. 4 | 5 | Also the makers of really great products. 6 | -------------------------------------------------------------------------------- /source/cross-references/1.html: -------------------------------------------------------------------------------- 1 |Link to Intro.
6 | 7 |Link to the end.
8 | -------------------------------------------------------------------------------- /source/definition-lists/1.html: -------------------------------------------------------------------------------- 1 |Pomaceous fruit of plants of the genus Malus in 4 | the family Rosaceae.
5 | 6 |Also the makers of really great products.
| MultiMarkdown | 10 |Result | 11 |
|---|---|
| foo | 11 |bar | 12 |
|---|---|
| foo | 18 |bar | 19 |
| foo bar | 22 ||
Glossary is a glossary term.
2 | 3 |The glossary collects information about 9 | important terms used in your document. ↩
10 |Glossary 2 | is a glossary term.
3 | 4 |The glossary collects information 10 | about important terms used in your document ↩
11 |MultiMarkdown v6 Syntax Guide
6 | by Fletcher T. Penney
Inspired by the Human Markdown Reference by Édouard Brière (including css)
9 | 10 | 13 | 14 |