Introduction
Introduction Statistics Contact Development Disclaimer Help
Merge pull request #3 from Ypnose/master - smu - smu - simple markup (Markdown)…
git clone git://git.codemadness.org/smu
Log
Files
Refs
README
LICENSE
---
commit 0121dd058d5399b7d8a8e1e672a8951f3572041e
parent 5bbc1243bc4fe6e594128c7dae7a52abcfe90757
Author: Enno Boland <[email protected]>
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(-)
---
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.