diff options
Diffstat (limited to 'tests/extensions/admonition.txt')
-rw-r--r-- | tests/extensions/admonition.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/extensions/admonition.txt b/tests/extensions/admonition.txt new file mode 100644 index 0000000..fd18bd6 --- /dev/null +++ b/tests/extensions/admonition.txt @@ -0,0 +1,28 @@ +Some text + +!!! note + A normal paragraph here + + 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?" + You can customize the title of the admonition + +!!! mycustomcssclass "And now..." + For something completely different. + + You can also use a custom CSS class name. + +!!! tip "" + An explicitly empty string prevents the title from being rendered. |