Introduction
Introduction Statistics Contact Development Disclaimer Help
Remove newline after <p> - smu - smu - simple markup (Markdown) processor (fork…
git clone git://git.codemadness.org/smu
Log
Files
Refs
README
LICENSE
---
commit 3dcb79863747053228b0f4812aa86e7e8a098c74
parent 5bbc1243bc4fe6e594128c7dae7a52abcfe90757
Author: Ypnose <[email protected]>
Date: Wed, 14 May 2014 22:32:35 +0200
Remove newline after <p>
Diffstat:
M smu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/smu.c b/smu.c
@@ -366,7 +366,7 @@ doparagraph(const char *begin, const char *end, int newbloc…
p = end;
if(p - begin <= 1)
return 0;
- fputs("<p>\n", stdout);
+ fputs("<p>", stdout);
process(begin, p, 0);
fputs("</p>\n", stdout);
return -(p - begin);
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.