From: Fletcher T. Penney Date: Tue, 7 Feb 2017 14:56:52 +0000 (-0500) Subject: CHANGED: Prep for completing definition list parsing X-Git-Tag: 0.1.2a^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5edadc823e53f275190fb5729758e8ba38b3f750;p=multimarkdown CHANGED: Prep for completing definition list parsing --- diff --git a/README.md b/README.md index 6e99aeb..6638a30 100644 --- a/README.md +++ b/README.md @@ -420,7 +420,6 @@ features have been implemented: * Automatic cross-reference targets * Basic Citation support * CriticMarkup support -* Definition lists * Inline and reference footnotes * Image and Link attributes (attributes can now be used with inline links as well as reference links) @@ -441,15 +440,16 @@ Things that are partially completed: * Locators required? * CriticMarkup -- need to decide: * How to handle CM stretches that include blank lines +* Definition lists * Fenced code blocks +* Footnotes -- need support for multiple blocks inside +* Headers -- need support for manual labels * Metadata * Full/Snippet modes Things yet to be completed: -* Multiple blocks inside of reference footnotes -* Manually specified labels for headers * Abbreviations * Glossaries * File Transclusion diff --git a/templates/README.md.in b/templates/README.md.in index 75167ca..4828810 100644 --- a/templates/README.md.in +++ b/templates/README.md.in @@ -420,7 +420,6 @@ features have been implemented: * Automatic cross-reference targets * Basic Citation support * CriticMarkup support -* Definition lists * Inline and reference footnotes * Image and Link attributes (attributes can now be used with inline links as well as reference links) @@ -441,15 +440,16 @@ Things that are partially completed: * Locators required? * CriticMarkup -- need to decide: * How to handle CM stretches that include blank lines +* Definition lists * Fenced code blocks +* Footnotes -- need support for multiple blocks inside +* Headers -- need support for manual labels * Metadata * Full/Snippet modes Things yet to be completed: -* Multiple blocks inside of reference footnotes -* Manually specified labels for headers * Abbreviations * Glossaries * File Transclusion diff --git a/tests/MMD6Tests/Definition Lists.text b/tests/MMD6Tests/Definition Lists.text index ceb0f3c..e7ff97f 100644 --- a/tests/MMD6Tests/Definition Lists.text +++ b/tests/MMD6Tests/Definition Lists.text @@ -18,3 +18,4 @@ foo : baz* bat foo + diff --git a/tests/MMD6Tests/Nested Definition Lists.html b/tests/MMD6Tests/Nested Definition Lists.html new file mode 100644 index 0000000..ad17d13 --- /dev/null +++ b/tests/MMD6Tests/Nested Definition Lists.html @@ -0,0 +1,10 @@ +
+
bat
+
+

foo

+ +

bar

+ +
foo
+
+
diff --git a/tests/MMD6Tests/Nested Definition Lists.htmlc b/tests/MMD6Tests/Nested Definition Lists.htmlc new file mode 100644 index 0000000..042d451 --- /dev/null +++ b/tests/MMD6Tests/Nested Definition Lists.htmlc @@ -0,0 +1,7 @@ +

bat +: foo

+ +
bar
+
+	foo
+
diff --git a/tests/MMD6Tests/Nested Definition Lists.text b/tests/MMD6Tests/Nested Definition Lists.text new file mode 100644 index 0000000..01191d6 --- /dev/null +++ b/tests/MMD6Tests/Nested Definition Lists.text @@ -0,0 +1,6 @@ +bat +: *foo* + + bar + + foo