about summary refs log tree commit diff stats
path: root/forth/gmi2html.fs
diff options
context:
space:
mode:
Diffstat (limited to 'forth/gmi2html.fs')
-rw-r--r--forth/gmi2html.fs7
1 files changed, 4 insertions, 3 deletions
diff --git a/forth/gmi2html.fs b/forth/gmi2html.fs
index bd9f301..1a08ccf 100644
--- a/forth/gmi2html.fs
+++ b/forth/gmi2html.fs
@@ -13,8 +13,9 @@
 
 \ === HTML Output === \
 
-: html-line-break ." <br>" ;
+\ : html-line-break ." <br>" ;
 
+: html-line-break ." " ;
 : html-blockquote-open ." <blockquote>" ;
 : html-blockquote-close ." </blockquote>" ;
 
@@ -34,9 +35,9 @@
 
 
 : html-link ( c-content u c-url u -- )
-	.\" <a rel=\"noreferrer\" href=\"" type .\" \">"
+	.\" <p><a rel=\"noreferrer\" href=\"" type .\" \">"
 	type
-	." </a>"
+	." </a></p>"
 	;
 
 : html-heading ( level c-content u -- )