diff options
author | Tiago Serafim <tserafim@gmail.com> | 2012-09-19 18:37:02 -0300 |
---|---|---|
committer | Tiago Serafim <tserafim@gmail.com> | 2012-09-19 18:37:02 -0300 |
commit | 9756cb9f6014347179a9acf54a739aad5dda0c6d (patch) | |
tree | 7228a0ca389962c2f68ff5a341d38d4279c64012 /tests/extensions/admonition.txt | |
parent | bcfe4257299034eed6aae8351d115c7691db3a3e (diff) | |
download | markdown-9756cb9f6014347179a9acf54a739aad5dda0c6d.tar.gz markdown-9756cb9f6014347179a9acf54a739aad5dda0c6d.tar.bz2 markdown-9756cb9f6014347179a9acf54a739aad5dda0c6d.zip |
More tests for the extension and new tests for the RE. It's now possible to use an explicit blank title to not have the <p> tag with the title rendered.
Diffstat (limited to 'tests/extensions/admonition.txt')
-rw-r--r-- | tests/extensions/admonition.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/extensions/admonition.txt b/tests/extensions/admonition.txt index e8db239..fd18bd6 100644 --- a/tests/extensions/admonition.txt +++ b/tests/extensions/admonition.txt @@ -6,6 +6,14 @@ Some text 1. first 2. second + > Some important quote + + > another paragraph in the quote + + int main() { + // insert some code + } + More text and stuff. !!! note "Did you know?" @@ -15,3 +23,6 @@ More text and stuff. For something completely different. You can also use a custom CSS class name. + +!!! tip "" + An explicitly empty string prevents the title from being rendered. |