smu

Simple markup processor
git clone https://git.sinitax.com/codemadness/smu
Log | Files | Refs | README | LICENSE | Upstream | sfeed.txt

commit 3e00caedeb16cdc3bb0740e2592064bf1823f7ad
parent beca8029f4b0bb433a4be950fc3c158b6903765e
Author: Karl Bartel <karl42@gmail.com>
Date:   Sun, 29 Sep 2019 17:27:26 +0200

Code blocks need four spaces indentation

Diffstat:
Msmu.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/smu.c b/smu.c @@ -42,7 +42,7 @@ static Parser parsers[] = { dounderline, docomment, dolineprefix, static int nohtml = 0; static Tag lineprefix[] = { - { " ", 0, "<pre><code>", "\n</code></pre>" }, + { " ", 0, "<pre><code>", "\n</code></pre>" }, { "\t", 0, "<pre><code>", "\n</code></pre>" }, { "> ", 2, "<blockquote>", "</blockquote>" }, { "###### ", 1, "<h6>", "</h6>" },