Merge pull request #3 from Ypnose/master - smu - smu - simple markup (Markdown) processor (fork, fixes + features)
HTML git clone git://git.codemadness.org/smu
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 0121dd058d5399b7d8a8e1e672a8951f3572041e
DIR parent 5bbc1243bc4fe6e594128c7dae7a52abcfe90757
HTML Author: Enno Boland <g@s01.de>
Date: Wed, 14 May 2014 23:43:18 +0200
Merge pull request #3 from Ypnose/master
Remove newline after <p>
Diffstat:
M smu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/smu.c b/smu.c
@@ -366,7 +366,7 @@ doparagraph(const char *begin, const char *end, int newblock) {
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);