diff options
Diffstat (limited to 'tests/extensions')
-rw-r--r-- | tests/extensions/admonition.html | 8 | ||||
-rw-r--r-- | tests/extensions/admonition.txt | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/tests/extensions/admonition.html b/tests/extensions/admonition.html index c900757..511d71a 100644 --- a/tests/extensions/admonition.html +++ b/tests/extensions/admonition.html @@ -28,4 +28,12 @@ </div> <div class="admonition tip"> <p>An explicitly empty string prevents the title from being rendered.</p> +</div> +<p>No body:</p> +<div class="admonition note"> +<p class="admonition-title">Note</p> +</div> +<p>Extra whitespace after the title should not alter output:</p> +<div class="admonition note"> +<p class="admonition-title">Note</p> </div>
\ No newline at end of file diff --git a/tests/extensions/admonition.txt b/tests/extensions/admonition.txt index d24336b..ab8434c 100644 --- a/tests/extensions/admonition.txt +++ b/tests/extensions/admonition.txt @@ -27,3 +27,11 @@ Not part of an Admonition! !!! tip "" An explicitly empty string prevents the title from being rendered. + +No body: + +!!! note + +Extra whitespace after the title should not alter output: + +!!! note |