rpeg-multimarkdown 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +94 -0
- data/README.markdown +58 -0
- data/Rakefile +171 -0
- data/bin/rpeg-multimarkdown +128 -0
- data/ext/extconf.h +3 -0
- data/ext/extconf.rb +15 -0
- data/ext/markdown.c +88 -0
- data/ext/markdown_lib.c +211 -0
- data/ext/markdown_lib.h +28 -0
- data/ext/markdown_output.c +2704 -0
- data/ext/markdown_parser.c +8275 -0
- data/ext/markdown_peg.h +142 -0
- data/ext/odf.c +179 -0
- data/ext/odf.h +3 -0
- data/ext/parsing_functions.c +182 -0
- data/ext/utility_functions.c +535 -0
- data/lib/multimarkdown.rb +1 -0
- data/lib/peg_multimarkdown.rb +74 -0
- data/test/MultiMarkdownTest/BeamerTests/Beamer-Tables.html +76 -0
- data/test/MultiMarkdownTest/BeamerTests/Beamer-Tables.tex +64 -0
- data/test/MultiMarkdownTest/BeamerTests/Beamer-Tables.text +38 -0
- data/test/MultiMarkdownTest/MarkdownTest.pl +182 -0
- data/test/MultiMarkdownTest/MemoirTests/Automatic Labels.html +42 -0
- data/test/MultiMarkdownTest/MemoirTests/Automatic Labels.tex +47 -0
- data/test/MultiMarkdownTest/MemoirTests/Automatic Labels.text +46 -0
- data/test/MultiMarkdownTest/MemoirTests/Base Header Level.html +20 -0
- data/test/MultiMarkdownTest/MemoirTests/Base Header Level.tex +19 -0
- data/test/MultiMarkdownTest/MemoirTests/Base Header Level.text +16 -0
- data/test/MultiMarkdownTest/MemoirTests/BibTeX.html +17 -0
- data/test/MultiMarkdownTest/MemoirTests/BibTeX.tex +12 -0
- data/test/MultiMarkdownTest/MemoirTests/BibTeX.text +11 -0
- data/test/MultiMarkdownTest/MemoirTests/Citations.html +63 -0
- data/test/MultiMarkdownTest/MemoirTests/Citations.tex +48 -0
- data/test/MultiMarkdownTest/MemoirTests/Citations.text +43 -0
- data/test/MultiMarkdownTest/MemoirTests/Definition Lists.html +61 -0
- data/test/MultiMarkdownTest/MemoirTests/Definition Lists.tex +63 -0
- data/test/MultiMarkdownTest/MemoirTests/Definition Lists.text +40 -0
- data/test/MultiMarkdownTest/MemoirTests/Dutch.html +23 -0
- data/test/MultiMarkdownTest/MemoirTests/Dutch.tex +18 -0
- data/test/MultiMarkdownTest/MemoirTests/Dutch.text +17 -0
- data/test/MultiMarkdownTest/MemoirTests/Email.html +48 -0
- data/test/MultiMarkdownTest/MemoirTests/Email.tex +61 -0
- data/test/MultiMarkdownTest/MemoirTests/Email.text +32 -0
- data/test/MultiMarkdownTest/MemoirTests/English.html +23 -0
- data/test/MultiMarkdownTest/MemoirTests/English.tex +18 -0
- data/test/MultiMarkdownTest/MemoirTests/English.text +17 -0
- data/test/MultiMarkdownTest/MemoirTests/Footnotes.html +47 -0
- data/test/MultiMarkdownTest/MemoirTests/Footnotes.tex +28 -0
- data/test/MultiMarkdownTest/MemoirTests/Footnotes.text +26 -0
- data/test/MultiMarkdownTest/MemoirTests/French.html +23 -0
- data/test/MultiMarkdownTest/MemoirTests/French.tex +18 -0
- data/test/MultiMarkdownTest/MemoirTests/French.text +17 -0
- data/test/MultiMarkdownTest/MemoirTests/German.html +23 -0
- data/test/MultiMarkdownTest/MemoirTests/German.tex +18 -0
- data/test/MultiMarkdownTest/MemoirTests/German.text +17 -0
- data/test/MultiMarkdownTest/MemoirTests/GermanGuillemets.html +23 -0
- data/test/MultiMarkdownTest/MemoirTests/GermanGuillemets.tex +18 -0
- data/test/MultiMarkdownTest/MemoirTests/GermanGuillemets.text +17 -0
- data/test/MultiMarkdownTest/MemoirTests/Glossary.html +47 -0
- data/test/MultiMarkdownTest/MemoirTests/Glossary.tex +30 -0
- data/test/MultiMarkdownTest/MemoirTests/Glossary.text +29 -0
- data/test/MultiMarkdownTest/MemoirTests/Line Breaks.html +21 -0
- data/test/MultiMarkdownTest/MemoirTests/Line Breaks.tex +16 -0
- data/test/MultiMarkdownTest/MemoirTests/Line Breaks.text +16 -0
- data/test/MultiMarkdownTest/MemoirTests/Link Attributes.html +40 -0
- data/test/MultiMarkdownTest/MemoirTests/Link Attributes.tex +61 -0
- data/test/MultiMarkdownTest/MemoirTests/Link Attributes.text +51 -0
- data/test/MultiMarkdownTest/MemoirTests/Math.html +22 -0
- data/test/MultiMarkdownTest/MemoirTests/Math.tex +16 -0
- data/test/MultiMarkdownTest/MemoirTests/Math.text +16 -0
- data/test/MultiMarkdownTest/MemoirTests/Memoir Mode.html +24 -0
- data/test/MultiMarkdownTest/MemoirTests/Memoir Mode.tex +23 -0
- data/test/MultiMarkdownTest/MemoirTests/Memoir Mode.text +20 -0
- data/test/MultiMarkdownTest/MemoirTests/MetaData.html +22 -0
- data/test/MultiMarkdownTest/MemoirTests/MetaData.tex +14 -0
- data/test/MultiMarkdownTest/MemoirTests/MetaData.text +15 -0
- data/test/MultiMarkdownTest/MemoirTests/Sanity.html +100 -0
- data/test/MultiMarkdownTest/MemoirTests/Sanity.tex +101 -0
- data/test/MultiMarkdownTest/MemoirTests/Sanity.text +78 -0
- data/test/MultiMarkdownTest/MemoirTests/SmartQuotes.html +26 -0
- data/test/MultiMarkdownTest/MemoirTests/SmartQuotes.tex +21 -0
- data/test/MultiMarkdownTest/MemoirTests/SmartQuotes.text +19 -0
- data/test/MultiMarkdownTest/MemoirTests/Swedish.html +23 -0
- data/test/MultiMarkdownTest/MemoirTests/Swedish.tex +18 -0
- data/test/MultiMarkdownTest/MemoirTests/Swedish.text +17 -0
- data/test/MultiMarkdownTest/MemoirTests/Tables.html +221 -0
- data/test/MultiMarkdownTest/MemoirTests/Tables.tex +134 -0
- data/test/MultiMarkdownTest/MemoirTests/Tables.text +64 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Automatic Labels.html +41 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Automatic Labels.tex +46 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Automatic Labels.text +45 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Base Header Level.html +20 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Base Header Level.tex +19 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Base Header Level.text +16 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/BibTeX.html +16 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/BibTeX.tex +11 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/BibTex.text +10 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Citations.html +62 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Citations.tex +47 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Citations.text +42 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Definition Lists.html +60 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Definition Lists.tex +62 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Definition Lists.text +39 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Dutch.html +23 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Dutch.tex +18 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Dutch.text +17 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Email.html +47 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Email.tex +54 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Email.text +31 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/English.html +23 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/English.tex +18 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/English.text +17 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Errors.html +16 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Errors.tex +11 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Errors.text +11 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Footnotes.html +46 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Footnotes.tex +24 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Footnotes.text +25 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/French.html +23 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/French.tex +18 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/French.text +17 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/German.html +23 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/German.tex +18 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/German.text +17 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/GermanGuillemets.html +23 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/GermanGuillemets.tex +18 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/GermanGuillemets.text +17 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Glossary.html +46 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Glossary.tex +26 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Glossary.text +28 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Headers.html +46 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Headers.tex +52 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Headers.text +49 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Line Breaks.html +20 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Line Breaks.tex +15 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Line Breaks.text +15 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Link Attributes.html +54 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Link Attributes.tex +60 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Link Attributes.text +50 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/List Parsing.html +20 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/List Parsing.tex +17 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/List Parsing.text +11 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/MarkdownInHTML.html +19 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/MarkdownInHTML.tex +13 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/MarkdownInHTML.text +19 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Math.html +21 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Math.tex +15 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Math.text +15 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/MetaData.html +21 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/MetaData.tex +13 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/MetaData.text +14 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Sanity.html +104 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Sanity.tex +100 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Sanity.text +77 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/SmartQuotes.html +29 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/SmartQuotes.tex +24 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/SmartQuotes.text +22 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Swedish.html +23 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Swedish.tex +18 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Swedish.text +17 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Tables.html +230 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Tables.tex +133 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/Tables.text +63 -0
- data/test/MultiMarkdownTest/MultiMarkdownTests/bibtex.bib +119 -0
- data/test/MultiMarkdownTest/README.md +58 -0
- data/test/MultiMarkdownTest/Tests/Amps and angle encoding.html +17 -0
- data/test/MultiMarkdownTest/Tests/Amps and angle encoding.text +21 -0
- data/test/MultiMarkdownTest/Tests/Auto links.html +18 -0
- data/test/MultiMarkdownTest/Tests/Auto links.text +13 -0
- data/test/MultiMarkdownTest/Tests/Backslash escapes.html +118 -0
- data/test/MultiMarkdownTest/Tests/Backslash escapes.text +120 -0
- data/test/MultiMarkdownTest/Tests/Blockquotes with code blocks.html +15 -0
- data/test/MultiMarkdownTest/Tests/Blockquotes with code blocks.text +11 -0
- data/test/MultiMarkdownTest/Tests/Code Blocks.html +18 -0
- data/test/MultiMarkdownTest/Tests/Code Blocks.text +14 -0
- data/test/MultiMarkdownTest/Tests/Code Spans.html +6 -0
- data/test/MultiMarkdownTest/Tests/Code Spans.text +6 -0
- data/test/MultiMarkdownTest/Tests/Compatibility.html +5 -0
- data/test/MultiMarkdownTest/Tests/Compatibility.text +9 -0
- data/test/MultiMarkdownTest/Tests/Hard-wrapped paragraphs with list-like lines.html +8 -0
- data/test/MultiMarkdownTest/Tests/Hard-wrapped paragraphs with list-like lines.text +8 -0
- data/test/MultiMarkdownTest/Tests/Horizontal rules.html +71 -0
- data/test/MultiMarkdownTest/Tests/Horizontal rules.text +67 -0
- data/test/MultiMarkdownTest/Tests/Inline HTML (Advanced).html +15 -0
- data/test/MultiMarkdownTest/Tests/Inline HTML (Advanced).text +15 -0
- data/test/MultiMarkdownTest/Tests/Inline HTML (Simple).html +72 -0
- data/test/MultiMarkdownTest/Tests/Inline HTML (Simple).text +69 -0
- data/test/MultiMarkdownTest/Tests/Inline HTML comments.html +13 -0
- data/test/MultiMarkdownTest/Tests/Inline HTML comments.text +13 -0
- data/test/MultiMarkdownTest/Tests/Links, inline style.html +11 -0
- data/test/MultiMarkdownTest/Tests/Links, inline style.text +12 -0
- data/test/MultiMarkdownTest/Tests/Links, reference style.html +52 -0
- data/test/MultiMarkdownTest/Tests/Links, reference style.text +71 -0
- data/test/MultiMarkdownTest/Tests/Links, shortcut references.html +9 -0
- data/test/MultiMarkdownTest/Tests/Links, shortcut references.text +20 -0
- data/test/MultiMarkdownTest/Tests/Literal quotes in titles.html +3 -0
- data/test/MultiMarkdownTest/Tests/Literal quotes in titles.text +7 -0
- data/test/MultiMarkdownTest/Tests/Markdown Documentation - Basics.html +314 -0
- data/test/MultiMarkdownTest/Tests/Markdown Documentation - Basics.text +306 -0
- data/test/MultiMarkdownTest/Tests/Markdown Documentation - Syntax.html +942 -0
- data/test/MultiMarkdownTest/Tests/Markdown Documentation - Syntax.text +888 -0
- data/test/MultiMarkdownTest/Tests/Nested blockquotes.html +9 -0
- data/test/MultiMarkdownTest/Tests/Nested blockquotes.text +5 -0
- data/test/MultiMarkdownTest/Tests/Ordered and unordered lists.html +148 -0
- data/test/MultiMarkdownTest/Tests/Ordered and unordered lists.text +131 -0
- data/test/MultiMarkdownTest/Tests/Strong and em together.html +7 -0
- data/test/MultiMarkdownTest/Tests/Strong and em together.text +7 -0
- data/test/MultiMarkdownTest/Tests/Tabs.html +25 -0
- data/test/MultiMarkdownTest/Tests/Tabs.text +21 -0
- data/test/MultiMarkdownTest/Tests/Tidyness.html +8 -0
- data/test/MultiMarkdownTest/Tests/Tidyness.text +5 -0
- data/test/benchmark.rb +49 -0
- data/test/multimarkdown_test.rb +89 -0
- metadata +280 -0
@@ -0,0 +1,40 @@
|
|
1
|
+
latex input: mmd-article-header
|
2
|
+
Title: MultiMarkdown Definition List Test
|
3
|
+
latex mode: memoir
|
4
|
+
latex input: mmd-article-begin-doc
|
5
|
+
latex footer: mmd-memoir-footer
|
6
|
+
|
7
|
+
Term 1
|
8
|
+
Term 2
|
9
|
+
: Definition a
|
10
|
+
|
11
|
+
Term 3
|
12
|
+
: Definition b
|
13
|
+
: Definition c
|
14
|
+
|
15
|
+
|
16
|
+
Term 1
|
17
|
+
|
18
|
+
: This is a definition with two paragraphs. Lorem ipsum
|
19
|
+
dolor sit amet, consectetuer adipiscing elit. Aliquam
|
20
|
+
hendrerit mi posuere lectus.
|
21
|
+
|
22
|
+
Vestibulum enim wisi, viverra nec, fringilla in, laoreet
|
23
|
+
vitae, risus.
|
24
|
+
|
25
|
+
: Second definition for term 1, also wrapped in a paragraph
|
26
|
+
because of the blank line preceding it.
|
27
|
+
|
28
|
+
Term 2
|
29
|
+
|
30
|
+
: This definition has a code block, a blockquote and a list.
|
31
|
+
|
32
|
+
code block.
|
33
|
+
|
34
|
+
> block quote
|
35
|
+
> on two lines.
|
36
|
+
|
37
|
+
1. first list item
|
38
|
+
2. second list item
|
39
|
+
|
40
|
+
And this is a regular paragraph.
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<meta name="latexinput" content="mmd-article-header"/>
|
6
|
+
<title>MultiMarkdown Dutch Test</title>
|
7
|
+
<meta name="latexinput" content="mmd-article-begin-doc"/>
|
8
|
+
<meta name="latexfooter" content="mmd-memoir-footer"/>
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<p>‘this is a single quote’</p>
|
12
|
+
|
13
|
+
<p>„this is a double quote”</p>
|
14
|
+
|
15
|
+
<p>this isn’t an apostrophe.</p>
|
16
|
+
|
17
|
+
<p>this is an em — dash</p>
|
18
|
+
|
19
|
+
<p>this is an en – dash</p>
|
20
|
+
|
21
|
+
<p>and an ellipsis…</p>
|
22
|
+
</body>
|
23
|
+
</html>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
\input{mmd-article-header}
|
2
|
+
\def\mytitle{MultiMarkdown Dutch Test}
|
3
|
+
\input{mmd-article-begin-doc}
|
4
|
+
`this is a single quote'
|
5
|
+
|
6
|
+
„this is a double quote''
|
7
|
+
|
8
|
+
this isn't an apostrophe.
|
9
|
+
|
10
|
+
this is an em --- dash
|
11
|
+
|
12
|
+
this is an en -- dash
|
13
|
+
|
14
|
+
and an ellipsis{\ldots}
|
15
|
+
|
16
|
+
\input{mmd-memoir-footer}
|
17
|
+
|
18
|
+
\end{document}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
latex input: mmd-article-header
|
2
|
+
Title: MultiMarkdown Dutch Test
|
3
|
+
quoteslanguage: dutch
|
4
|
+
latex input: mmd-article-begin-doc
|
5
|
+
latex footer: mmd-memoir-footer
|
6
|
+
|
7
|
+
'this is a single quote'
|
8
|
+
|
9
|
+
"this is a double quote"
|
10
|
+
|
11
|
+
this isn't an apostrophe.
|
12
|
+
|
13
|
+
this is an em --- dash
|
14
|
+
|
15
|
+
this is an en -- dash
|
16
|
+
|
17
|
+
and an ellipsis...
|
@@ -0,0 +1,48 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<meta name="latexinput" content="mmd-article-header"/>
|
6
|
+
<title>Email Test</title>
|
7
|
+
<meta name="latexmode" content="memoir"/>
|
8
|
+
<meta name="latexinput" content="mmd-article-begin-doc"/>
|
9
|
+
<meta name="latexfooter" content="mmd-memoir-footer"/>
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
<p>Link: <a href="mailto:user67@example.com">user67@example.com</a>.</p>
|
13
|
+
|
14
|
+
<ul>
|
15
|
+
<li>In a list?</li>
|
16
|
+
<li><a href="mailto:user67@example.com">user67@example.com</a></li>
|
17
|
+
<li>It should.</li>
|
18
|
+
</ul>
|
19
|
+
|
20
|
+
<blockquote>
|
21
|
+
<p>Blockquoted: <a href="mailto:user67@example.com">user67@example.com</a></p>
|
22
|
+
</blockquote>
|
23
|
+
|
24
|
+
<p>Auto-links should not occur here: <code><user67@example.com></code></p>
|
25
|
+
|
26
|
+
<pre><code>or here: <user67@example.com>
|
27
|
+
</code></pre>
|
28
|
+
|
29
|
+
<p>And with the mailto bit:</p>
|
30
|
+
|
31
|
+
<p>Link: <a href="mailto:user67@example.com">user67@example.com</a>.</p>
|
32
|
+
|
33
|
+
<ul>
|
34
|
+
<li>In a list?</li>
|
35
|
+
<li><a href="mailto:user67@example.com">user67@example.com</a></li>
|
36
|
+
<li>It should.</li>
|
37
|
+
</ul>
|
38
|
+
|
39
|
+
<blockquote>
|
40
|
+
<p>Blockquoted: <a href="mailto:user67@example.com">user67@example.com</a></p>
|
41
|
+
</blockquote>
|
42
|
+
|
43
|
+
<p>Auto-links should not occur here: <code><mailto:user67@example.com></code></p>
|
44
|
+
|
45
|
+
<pre><code>or here: <mailto:user67@example.com>
|
46
|
+
</code></pre>
|
47
|
+
</body>
|
48
|
+
</html>
|
@@ -0,0 +1,61 @@
|
|
1
|
+
\input{mmd-article-header}
|
2
|
+
\def\mytitle{Email Test}
|
3
|
+
\def\latexmode{memoir}
|
4
|
+
\input{mmd-article-begin-doc}
|
5
|
+
Link: \href{mailto:user67@example.com}{user67@example.com}.
|
6
|
+
|
7
|
+
\begin{itemize}
|
8
|
+
\item In a list?
|
9
|
+
|
10
|
+
\item \href{mailto:user67@example.com}{user67@example.com}
|
11
|
+
|
12
|
+
\item It should.
|
13
|
+
|
14
|
+
\end{itemize}
|
15
|
+
|
16
|
+
\begin{quote}
|
17
|
+
|
18
|
+
Blockquoted: \href{mailto:user67@example.com}{user67@example.com}
|
19
|
+
\end{quote}
|
20
|
+
|
21
|
+
Auto-links should not occur here: \texttt{$<$user67@example.com$>$}
|
22
|
+
|
23
|
+
\begin{adjustwidth}{2.5em}{2.5em}
|
24
|
+
\begin{verbatim}
|
25
|
+
|
26
|
+
or here: <user67@example.com>
|
27
|
+
|
28
|
+
\end{verbatim}
|
29
|
+
\end{adjustwidth}
|
30
|
+
|
31
|
+
And with the mailto bit:
|
32
|
+
|
33
|
+
Link: \href{mailto:user67@example.com}{user67@example.com}.
|
34
|
+
|
35
|
+
\begin{itemize}
|
36
|
+
\item In a list?
|
37
|
+
|
38
|
+
\item \href{mailto:user67@example.com}{user67@example.com}
|
39
|
+
|
40
|
+
\item It should.
|
41
|
+
|
42
|
+
\end{itemize}
|
43
|
+
|
44
|
+
\begin{quote}
|
45
|
+
|
46
|
+
Blockquoted: \href{mailto:user67@example.com}{user67@example.com}
|
47
|
+
\end{quote}
|
48
|
+
|
49
|
+
Auto-links should not occur here: \texttt{$<$mailto:user67@example.com$>$}
|
50
|
+
|
51
|
+
\begin{adjustwidth}{2.5em}{2.5em}
|
52
|
+
\begin{verbatim}
|
53
|
+
|
54
|
+
or here: <mailto:user67@example.com>
|
55
|
+
|
56
|
+
\end{verbatim}
|
57
|
+
\end{adjustwidth}
|
58
|
+
|
59
|
+
\input{mmd-memoir-footer}
|
60
|
+
|
61
|
+
\end{document}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
latex input: mmd-article-header
|
2
|
+
Title: Email Test
|
3
|
+
latex mode: memoir
|
4
|
+
latex input: mmd-article-begin-doc
|
5
|
+
latex footer: mmd-memoir-footer
|
6
|
+
|
7
|
+
Link: <user67@example.com>.
|
8
|
+
|
9
|
+
* In a list?
|
10
|
+
* <user67@example.com>
|
11
|
+
* It should.
|
12
|
+
|
13
|
+
> Blockquoted: <user67@example.com>
|
14
|
+
|
15
|
+
Auto-links should not occur here: `<user67@example.com>`
|
16
|
+
|
17
|
+
or here: <user67@example.com>
|
18
|
+
|
19
|
+
|
20
|
+
And with the mailto bit:
|
21
|
+
|
22
|
+
Link: <mailto:user67@example.com>.
|
23
|
+
|
24
|
+
* In a list?
|
25
|
+
* <mailto:user67@example.com>
|
26
|
+
* It should.
|
27
|
+
|
28
|
+
> Blockquoted: <mailto:user67@example.com>
|
29
|
+
|
30
|
+
Auto-links should not occur here: `<mailto:user67@example.com>`
|
31
|
+
|
32
|
+
or here: <mailto:user67@example.com>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<meta name="latexinput" content="mmd-article-header"/>
|
6
|
+
<title>MultiMarkdown English Test</title>
|
7
|
+
<meta name="latexinput" content="mmd-article-begin-doc"/>
|
8
|
+
<meta name="latexfooter" content="mmd-memoir-footer"/>
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<p>‘this is a single quote’</p>
|
12
|
+
|
13
|
+
<p>“this is a double quote”</p>
|
14
|
+
|
15
|
+
<p>this isn’t an apostrophe.</p>
|
16
|
+
|
17
|
+
<p>this is an em — dash</p>
|
18
|
+
|
19
|
+
<p>this is an en – dash</p>
|
20
|
+
|
21
|
+
<p>and an ellipsis…</p>
|
22
|
+
</body>
|
23
|
+
</html>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
\input{mmd-article-header}
|
2
|
+
\def\mytitle{MultiMarkdown English Test}
|
3
|
+
\input{mmd-article-begin-doc}
|
4
|
+
`this is a single quote'
|
5
|
+
|
6
|
+
``this is a double quote''
|
7
|
+
|
8
|
+
this isn't an apostrophe.
|
9
|
+
|
10
|
+
this is an em --- dash
|
11
|
+
|
12
|
+
this is an en -- dash
|
13
|
+
|
14
|
+
and an ellipsis{\ldots}
|
15
|
+
|
16
|
+
\input{mmd-memoir-footer}
|
17
|
+
|
18
|
+
\end{document}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
latex input: mmd-article-header
|
2
|
+
Title: MultiMarkdown English Test
|
3
|
+
quoteslanguage: english
|
4
|
+
latex input: mmd-article-begin-doc
|
5
|
+
latex footer: mmd-memoir-footer
|
6
|
+
|
7
|
+
'this is a single quote'
|
8
|
+
|
9
|
+
"this is a double quote"
|
10
|
+
|
11
|
+
this isn't an apostrophe.
|
12
|
+
|
13
|
+
this is an em --- dash
|
14
|
+
|
15
|
+
this is an en -- dash
|
16
|
+
|
17
|
+
and an ellipsis...
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<meta name="latexinput" content="mmd-article-header"/>
|
6
|
+
<title>MultiMarkdown Footer Test</title>
|
7
|
+
<meta name="latexmode" content="memoir"/>
|
8
|
+
<meta name="latexinput" content="mmd-article-begin-doc"/>
|
9
|
+
<meta name="latexfooter" content="mmd-memoir-footer"/>
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
<p>Here is some text containing a footnote.<a href="#fn:1" id="fnref:1" title="see footnote" class="footnote">[1]</a></p>
|
13
|
+
|
14
|
+
<blockquote>
|
15
|
+
<p>And here is a footnote within a blockquote, should be labelled #2.<a href="#fn:2" id="fnref:2" title="see footnote" class="footnote">[2]</a></p>
|
16
|
+
</blockquote>
|
17
|
+
|
18
|
+
<p>And this is a codeblock, that should not be a footnote:</p>
|
19
|
+
|
20
|
+
<pre><code>This is code.[^somesamplefootnote]
|
21
|
+
</code></pre>
|
22
|
+
|
23
|
+
<p>And this is a short footnote for testing.<a href="#fn:3" id="fnref:3" title="see footnote" class="footnote">[3]</a></p>
|
24
|
+
|
25
|
+
<p>And now, reuse a footnote.<a href="#fn:3" title="see footnote" class="footnote">[3]</a></p>
|
26
|
+
|
27
|
+
<div class="footnotes">
|
28
|
+
<hr />
|
29
|
+
<ol>
|
30
|
+
|
31
|
+
<li id="fn:1">
|
32
|
+
<p>Here is the text of the footnote itself. It also has a <a href="http://somelink.com">link</a>.</p> <a href="#fnref:1" title="return to article" class="reversefootnote"> ↩</a>
|
33
|
+
</li>
|
34
|
+
|
35
|
+
<li id="fn:2">
|
36
|
+
<p>Note # 2.</p> <a href="#fnref:2" title="return to article" class="reversefootnote"> ↩</a>
|
37
|
+
</li>
|
38
|
+
|
39
|
+
<li id="fn:3">
|
40
|
+
<p>Finis</p> <a href="#fnref:3" title="return to article" class="reversefootnote"> ↩</a>
|
41
|
+
</li>
|
42
|
+
|
43
|
+
</ol>
|
44
|
+
</div>
|
45
|
+
|
46
|
+
</body>
|
47
|
+
</html>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
\input{mmd-article-header}
|
2
|
+
\def\mytitle{MultiMarkdown Footer Test}
|
3
|
+
\def\latexmode{memoir}
|
4
|
+
\input{mmd-article-begin-doc}
|
5
|
+
Here is some text containing a footnote.\footnote{Here is the text of the footnote itself. It also has a \href{http://somelink.com}{link}\footnote{\href{http://somelink.com}{http:/\slash somelink.com}}.}
|
6
|
+
|
7
|
+
\begin{quote}
|
8
|
+
|
9
|
+
And here is a footnote within a blockquote, should be labelled \#2.\footnote{Note \# 2.}
|
10
|
+
\end{quote}
|
11
|
+
|
12
|
+
And this is a codeblock, that should not be a footnote:
|
13
|
+
|
14
|
+
\begin{adjustwidth}{2.5em}{2.5em}
|
15
|
+
\begin{verbatim}
|
16
|
+
|
17
|
+
This is code.[^somesamplefootnote]
|
18
|
+
|
19
|
+
\end{verbatim}
|
20
|
+
\end{adjustwidth}
|
21
|
+
|
22
|
+
And this is a short footnote for testing.\footnote{Finis}
|
23
|
+
|
24
|
+
And now, reuse a footnote.\footnote{Finis}
|
25
|
+
|
26
|
+
\input{mmd-memoir-footer}
|
27
|
+
|
28
|
+
\end{document}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
latex input: mmd-article-header
|
2
|
+
Title: MultiMarkdown Footer Test
|
3
|
+
latex mode: memoir
|
4
|
+
latex input: mmd-article-begin-doc
|
5
|
+
latex footer: mmd-memoir-footer
|
6
|
+
|
7
|
+
Here is some text containing a footnote.[^somesamplefootnote]
|
8
|
+
|
9
|
+
|
10
|
+
> And here is a footnote within a blockquote, should be labelled #2.[^secondnote]
|
11
|
+
|
12
|
+
And this is a codeblock, that should not be a footnote:
|
13
|
+
|
14
|
+
This is code.[^somesamplefootnote]
|
15
|
+
|
16
|
+
And this is a short footnote for testing.[^shortnote]
|
17
|
+
|
18
|
+
And now, reuse a footnote.[^shortnote]
|
19
|
+
|
20
|
+
[^somesamplefootnote]: Here is the text of the footnote itself. It also has a [link][somesamplefootnote].
|
21
|
+
|
22
|
+
[somesamplefootnote]:http://somelink.com
|
23
|
+
|
24
|
+
[^secondnote]: Note # 2.
|
25
|
+
|
26
|
+
[^shortnote]: Finis
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<meta name="latexinput" content="mmd-article-header"/>
|
6
|
+
<title>MultiMarkdown French Test</title>
|
7
|
+
<meta name="latexinput" content="mmd-article-begin-doc"/>
|
8
|
+
<meta name="latexfooter" content="mmd-memoir-footer"/>
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<p>'this is a single quote’</p>
|
12
|
+
|
13
|
+
<p>«this is a double quote»</p>
|
14
|
+
|
15
|
+
<p>this isn’t an apostrophe.</p>
|
16
|
+
|
17
|
+
<p>this is an em — dash</p>
|
18
|
+
|
19
|
+
<p>this is an en – dash</p>
|
20
|
+
|
21
|
+
<p>and an ellipsis…</p>
|
22
|
+
</body>
|
23
|
+
</html>
|