nihdoc

WIP markup parser (txt -> html)
git clone git://git.alexkarle.com.com/blag
Log | Files | Refs | README | LICENSE

commit c5103ccf566da079865a0fd61943a485f50cacbd (patch)
parent 070ca5d5383bfd7d7e36e21b5132d4193a72d11c
Author: Alex Karle <alex@alexkarle.com>
Date:   Sat, 18 Dec 2021 14:04:50 -0500

test: Add <blockquote> and <pre> test cases

Diffstat:
Mtest/big.html | 14++++++++++++++
Mtest/big.txt | 8++++++++
2 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/test/big.html b/test/big.html @@ -56,3 +56,17 @@ This is a <em>paragraph</em> <strong>dangit</strong> with links to <a href="https://alexkarle.com">https://alexkarle.com</a> and my <a href="gopher://alexkarle.com">gopherhole</a>. </p> + +<blockquote> + this is a block quote + that wraps! +</blockquote> + +<code><pre> +$ this is a code block +$ git status +</pre></code> + +<p> +cheers! +</p> diff --git a/test/big.txt b/test/big.txt @@ -22,3 +22,11 @@ that wraps nicely This is a _paragraph_ *dangit* with links to [https://alexkarle.com] and my [gopher://alexkarle.com gopherhole]. + +> this is a block quote +> that wraps! + + $ this is a code block + $ git status + +cheers!