From 5edadc823e53f275190fb5729758e8ba38b3f750 Mon Sep 17 00:00:00 2001 From: "Fletcher T. Penney" Date: Tue, 7 Feb 2017 09:56:52 -0500 Subject: [PATCH] CHANGED: Prep for completing definition list parsing --- README.md | 6 +++--- templates/README.md.in | 6 +++--- tests/MMD6Tests/Definition Lists.text | 1 + tests/MMD6Tests/Nested Definition Lists.html | 10 ++++++++++ tests/MMD6Tests/Nested Definition Lists.htmlc | 7 +++++++ tests/MMD6Tests/Nested Definition Lists.text | 6 ++++++ 6 files changed, 30 insertions(+), 6 deletions(-) create mode 100644 tests/MMD6Tests/Nested Definition Lists.html create mode 100644 tests/MMD6Tests/Nested Definition Lists.htmlc create mode 100644 tests/MMD6Tests/Nested Definition Lists.text 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 -- 2.40.0