rpeg-multimarkdown 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
metadata
ADDED
@@ -0,0 +1,280 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rpeg-multimarkdown
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 25
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Oliver Whyte
|
14
|
+
- Ryan Tomayko
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2011-06-07 00:00:00 Z
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: " A Ruby extension to process MultiMarkdown-formatted\n text, using Fletcher Penney's C peg-multimarkdown\n implementation.\n"
|
23
|
+
email:
|
24
|
+
- oawhyte@gmail.com
|
25
|
+
- r@tomayko.com
|
26
|
+
executables:
|
27
|
+
- rpeg-multimarkdown
|
28
|
+
extensions:
|
29
|
+
- ext/extconf.rb
|
30
|
+
extra_rdoc_files:
|
31
|
+
- LICENSE
|
32
|
+
files:
|
33
|
+
- README.markdown
|
34
|
+
- LICENSE
|
35
|
+
- Rakefile
|
36
|
+
- lib/multimarkdown.rb
|
37
|
+
- lib/peg_multimarkdown.rb
|
38
|
+
- ext/extconf.rb
|
39
|
+
- test/benchmark.rb
|
40
|
+
- test/multimarkdown_test.rb
|
41
|
+
- ext/markdown.c
|
42
|
+
- ext/markdown_lib.c
|
43
|
+
- ext/markdown_output.c
|
44
|
+
- ext/markdown_parser.c
|
45
|
+
- ext/odf.c
|
46
|
+
- ext/parsing_functions.c
|
47
|
+
- ext/utility_functions.c
|
48
|
+
- ext/extconf.h
|
49
|
+
- ext/markdown_lib.h
|
50
|
+
- ext/markdown_peg.h
|
51
|
+
- ext/odf.h
|
52
|
+
- test/MultiMarkdownTest/BeamerTests/Beamer-Tables.html
|
53
|
+
- test/MultiMarkdownTest/BeamerTests/Beamer-Tables.tex
|
54
|
+
- test/MultiMarkdownTest/BeamerTests/Beamer-Tables.text
|
55
|
+
- test/MultiMarkdownTest/MarkdownTest.pl
|
56
|
+
- test/MultiMarkdownTest/MemoirTests/Automatic Labels.html
|
57
|
+
- test/MultiMarkdownTest/MemoirTests/Automatic Labels.tex
|
58
|
+
- test/MultiMarkdownTest/MemoirTests/Automatic Labels.text
|
59
|
+
- test/MultiMarkdownTest/MemoirTests/Base Header Level.html
|
60
|
+
- test/MultiMarkdownTest/MemoirTests/Base Header Level.tex
|
61
|
+
- test/MultiMarkdownTest/MemoirTests/Base Header Level.text
|
62
|
+
- test/MultiMarkdownTest/MemoirTests/BibTeX.html
|
63
|
+
- test/MultiMarkdownTest/MemoirTests/BibTeX.tex
|
64
|
+
- test/MultiMarkdownTest/MemoirTests/BibTeX.text
|
65
|
+
- test/MultiMarkdownTest/MemoirTests/Citations.html
|
66
|
+
- test/MultiMarkdownTest/MemoirTests/Citations.tex
|
67
|
+
- test/MultiMarkdownTest/MemoirTests/Citations.text
|
68
|
+
- test/MultiMarkdownTest/MemoirTests/Definition Lists.html
|
69
|
+
- test/MultiMarkdownTest/MemoirTests/Definition Lists.tex
|
70
|
+
- test/MultiMarkdownTest/MemoirTests/Definition Lists.text
|
71
|
+
- test/MultiMarkdownTest/MemoirTests/Dutch.html
|
72
|
+
- test/MultiMarkdownTest/MemoirTests/Dutch.tex
|
73
|
+
- test/MultiMarkdownTest/MemoirTests/Dutch.text
|
74
|
+
- test/MultiMarkdownTest/MemoirTests/Email.html
|
75
|
+
- test/MultiMarkdownTest/MemoirTests/Email.tex
|
76
|
+
- test/MultiMarkdownTest/MemoirTests/Email.text
|
77
|
+
- test/MultiMarkdownTest/MemoirTests/English.html
|
78
|
+
- test/MultiMarkdownTest/MemoirTests/English.tex
|
79
|
+
- test/MultiMarkdownTest/MemoirTests/English.text
|
80
|
+
- test/MultiMarkdownTest/MemoirTests/Footnotes.html
|
81
|
+
- test/MultiMarkdownTest/MemoirTests/Footnotes.tex
|
82
|
+
- test/MultiMarkdownTest/MemoirTests/Footnotes.text
|
83
|
+
- test/MultiMarkdownTest/MemoirTests/French.html
|
84
|
+
- test/MultiMarkdownTest/MemoirTests/French.tex
|
85
|
+
- test/MultiMarkdownTest/MemoirTests/French.text
|
86
|
+
- test/MultiMarkdownTest/MemoirTests/German.html
|
87
|
+
- test/MultiMarkdownTest/MemoirTests/German.tex
|
88
|
+
- test/MultiMarkdownTest/MemoirTests/German.text
|
89
|
+
- test/MultiMarkdownTest/MemoirTests/GermanGuillemets.html
|
90
|
+
- test/MultiMarkdownTest/MemoirTests/GermanGuillemets.tex
|
91
|
+
- test/MultiMarkdownTest/MemoirTests/GermanGuillemets.text
|
92
|
+
- test/MultiMarkdownTest/MemoirTests/Glossary.html
|
93
|
+
- test/MultiMarkdownTest/MemoirTests/Glossary.tex
|
94
|
+
- test/MultiMarkdownTest/MemoirTests/Glossary.text
|
95
|
+
- test/MultiMarkdownTest/MemoirTests/Line Breaks.html
|
96
|
+
- test/MultiMarkdownTest/MemoirTests/Line Breaks.tex
|
97
|
+
- test/MultiMarkdownTest/MemoirTests/Line Breaks.text
|
98
|
+
- test/MultiMarkdownTest/MemoirTests/Link Attributes.html
|
99
|
+
- test/MultiMarkdownTest/MemoirTests/Link Attributes.tex
|
100
|
+
- test/MultiMarkdownTest/MemoirTests/Link Attributes.text
|
101
|
+
- test/MultiMarkdownTest/MemoirTests/Math.html
|
102
|
+
- test/MultiMarkdownTest/MemoirTests/Math.tex
|
103
|
+
- test/MultiMarkdownTest/MemoirTests/Math.text
|
104
|
+
- test/MultiMarkdownTest/MemoirTests/Memoir Mode.html
|
105
|
+
- test/MultiMarkdownTest/MemoirTests/Memoir Mode.tex
|
106
|
+
- test/MultiMarkdownTest/MemoirTests/Memoir Mode.text
|
107
|
+
- test/MultiMarkdownTest/MemoirTests/MetaData.html
|
108
|
+
- test/MultiMarkdownTest/MemoirTests/MetaData.tex
|
109
|
+
- test/MultiMarkdownTest/MemoirTests/MetaData.text
|
110
|
+
- test/MultiMarkdownTest/MemoirTests/Sanity.html
|
111
|
+
- test/MultiMarkdownTest/MemoirTests/Sanity.tex
|
112
|
+
- test/MultiMarkdownTest/MemoirTests/Sanity.text
|
113
|
+
- test/MultiMarkdownTest/MemoirTests/SmartQuotes.html
|
114
|
+
- test/MultiMarkdownTest/MemoirTests/SmartQuotes.tex
|
115
|
+
- test/MultiMarkdownTest/MemoirTests/SmartQuotes.text
|
116
|
+
- test/MultiMarkdownTest/MemoirTests/Swedish.html
|
117
|
+
- test/MultiMarkdownTest/MemoirTests/Swedish.tex
|
118
|
+
- test/MultiMarkdownTest/MemoirTests/Swedish.text
|
119
|
+
- test/MultiMarkdownTest/MemoirTests/Tables.html
|
120
|
+
- test/MultiMarkdownTest/MemoirTests/Tables.tex
|
121
|
+
- test/MultiMarkdownTest/MemoirTests/Tables.text
|
122
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Automatic Labels.html
|
123
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Automatic Labels.tex
|
124
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Automatic Labels.text
|
125
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Base Header Level.html
|
126
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Base Header Level.tex
|
127
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Base Header Level.text
|
128
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/bibtex.bib
|
129
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/BibTeX.html
|
130
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/BibTeX.tex
|
131
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/BibTex.text
|
132
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Citations.html
|
133
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Citations.tex
|
134
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Citations.text
|
135
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Definition Lists.html
|
136
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Definition Lists.tex
|
137
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Definition Lists.text
|
138
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Dutch.html
|
139
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Dutch.tex
|
140
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Dutch.text
|
141
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Email.html
|
142
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Email.tex
|
143
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Email.text
|
144
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/English.html
|
145
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/English.tex
|
146
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/English.text
|
147
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Errors.html
|
148
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Errors.tex
|
149
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Errors.text
|
150
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Footnotes.html
|
151
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Footnotes.tex
|
152
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Footnotes.text
|
153
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/French.html
|
154
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/French.tex
|
155
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/French.text
|
156
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/German.html
|
157
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/German.tex
|
158
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/German.text
|
159
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/GermanGuillemets.html
|
160
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/GermanGuillemets.tex
|
161
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/GermanGuillemets.text
|
162
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Glossary.html
|
163
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Glossary.tex
|
164
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Glossary.text
|
165
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Headers.html
|
166
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Headers.tex
|
167
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Headers.text
|
168
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Line Breaks.html
|
169
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Line Breaks.tex
|
170
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Line Breaks.text
|
171
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Link Attributes.html
|
172
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Link Attributes.tex
|
173
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Link Attributes.text
|
174
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/List Parsing.html
|
175
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/List Parsing.tex
|
176
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/List Parsing.text
|
177
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/MarkdownInHTML.html
|
178
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/MarkdownInHTML.tex
|
179
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/MarkdownInHTML.text
|
180
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Math.html
|
181
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Math.tex
|
182
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Math.text
|
183
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/MetaData.html
|
184
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/MetaData.tex
|
185
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/MetaData.text
|
186
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Sanity.html
|
187
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Sanity.tex
|
188
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Sanity.text
|
189
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/SmartQuotes.html
|
190
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/SmartQuotes.tex
|
191
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/SmartQuotes.text
|
192
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Swedish.html
|
193
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Swedish.tex
|
194
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Swedish.text
|
195
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Tables.html
|
196
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Tables.tex
|
197
|
+
- test/MultiMarkdownTest/MultiMarkdownTests/Tables.text
|
198
|
+
- test/MultiMarkdownTest/README.md
|
199
|
+
- test/MultiMarkdownTest/Tests/Amps and angle encoding.html
|
200
|
+
- test/MultiMarkdownTest/Tests/Amps and angle encoding.text
|
201
|
+
- test/MultiMarkdownTest/Tests/Auto links.html
|
202
|
+
- test/MultiMarkdownTest/Tests/Auto links.text
|
203
|
+
- test/MultiMarkdownTest/Tests/Backslash escapes.html
|
204
|
+
- test/MultiMarkdownTest/Tests/Backslash escapes.text
|
205
|
+
- test/MultiMarkdownTest/Tests/Blockquotes with code blocks.html
|
206
|
+
- test/MultiMarkdownTest/Tests/Blockquotes with code blocks.text
|
207
|
+
- test/MultiMarkdownTest/Tests/Code Blocks.html
|
208
|
+
- test/MultiMarkdownTest/Tests/Code Blocks.text
|
209
|
+
- test/MultiMarkdownTest/Tests/Code Spans.html
|
210
|
+
- test/MultiMarkdownTest/Tests/Code Spans.text
|
211
|
+
- test/MultiMarkdownTest/Tests/Compatibility.html
|
212
|
+
- test/MultiMarkdownTest/Tests/Compatibility.text
|
213
|
+
- test/MultiMarkdownTest/Tests/Hard-wrapped paragraphs with list-like lines.html
|
214
|
+
- test/MultiMarkdownTest/Tests/Hard-wrapped paragraphs with list-like lines.text
|
215
|
+
- test/MultiMarkdownTest/Tests/Horizontal rules.html
|
216
|
+
- test/MultiMarkdownTest/Tests/Horizontal rules.text
|
217
|
+
- test/MultiMarkdownTest/Tests/Inline HTML (Advanced).html
|
218
|
+
- test/MultiMarkdownTest/Tests/Inline HTML (Advanced).text
|
219
|
+
- test/MultiMarkdownTest/Tests/Inline HTML (Simple).html
|
220
|
+
- test/MultiMarkdownTest/Tests/Inline HTML (Simple).text
|
221
|
+
- test/MultiMarkdownTest/Tests/Inline HTML comments.html
|
222
|
+
- test/MultiMarkdownTest/Tests/Inline HTML comments.text
|
223
|
+
- test/MultiMarkdownTest/Tests/Links, inline style.html
|
224
|
+
- test/MultiMarkdownTest/Tests/Links, inline style.text
|
225
|
+
- test/MultiMarkdownTest/Tests/Links, reference style.html
|
226
|
+
- test/MultiMarkdownTest/Tests/Links, reference style.text
|
227
|
+
- test/MultiMarkdownTest/Tests/Links, shortcut references.html
|
228
|
+
- test/MultiMarkdownTest/Tests/Links, shortcut references.text
|
229
|
+
- test/MultiMarkdownTest/Tests/Literal quotes in titles.html
|
230
|
+
- test/MultiMarkdownTest/Tests/Literal quotes in titles.text
|
231
|
+
- test/MultiMarkdownTest/Tests/Markdown Documentation - Basics.html
|
232
|
+
- test/MultiMarkdownTest/Tests/Markdown Documentation - Basics.text
|
233
|
+
- test/MultiMarkdownTest/Tests/Markdown Documentation - Syntax.html
|
234
|
+
- test/MultiMarkdownTest/Tests/Markdown Documentation - Syntax.text
|
235
|
+
- test/MultiMarkdownTest/Tests/Nested blockquotes.html
|
236
|
+
- test/MultiMarkdownTest/Tests/Nested blockquotes.text
|
237
|
+
- test/MultiMarkdownTest/Tests/Ordered and unordered lists.html
|
238
|
+
- test/MultiMarkdownTest/Tests/Ordered and unordered lists.text
|
239
|
+
- test/MultiMarkdownTest/Tests/Strong and em together.html
|
240
|
+
- test/MultiMarkdownTest/Tests/Strong and em together.text
|
241
|
+
- test/MultiMarkdownTest/Tests/Tabs.html
|
242
|
+
- test/MultiMarkdownTest/Tests/Tabs.text
|
243
|
+
- test/MultiMarkdownTest/Tests/Tidyness.html
|
244
|
+
- test/MultiMarkdownTest/Tests/Tidyness.text
|
245
|
+
- bin/rpeg-multimarkdown
|
246
|
+
homepage: http://github.com/djungelvral/rpeg-multimarkdown
|
247
|
+
licenses: []
|
248
|
+
|
249
|
+
post_install_message:
|
250
|
+
rdoc_options: []
|
251
|
+
|
252
|
+
require_paths:
|
253
|
+
- lib
|
254
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
255
|
+
none: false
|
256
|
+
requirements:
|
257
|
+
- - ">="
|
258
|
+
- !ruby/object:Gem::Version
|
259
|
+
hash: 3
|
260
|
+
segments:
|
261
|
+
- 0
|
262
|
+
version: "0"
|
263
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
264
|
+
none: false
|
265
|
+
requirements:
|
266
|
+
- - ">="
|
267
|
+
- !ruby/object:Gem::Version
|
268
|
+
hash: 3
|
269
|
+
segments:
|
270
|
+
- 0
|
271
|
+
version: "0"
|
272
|
+
requirements: []
|
273
|
+
|
274
|
+
rubyforge_project: rpeg-multimarkdown
|
275
|
+
rubygems_version: 1.8.5
|
276
|
+
signing_key:
|
277
|
+
specification_version: 3
|
278
|
+
summary: Fast MultiMarkdown implementation
|
279
|
+
test_files:
|
280
|
+
- test/multimarkdown_test.rb
|