summary refs log tree commit diff stats
path: root/gmi2html.awk
diff options
context:
space:
mode:
Diffstat (limited to 'gmi2html.awk')
-rwxr-xr-xgmi2html.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/gmi2html.awk b/gmi2html.awk
index 3092852..cba6c20 100755
--- a/gmi2html.awk
+++ b/gmi2html.awk
@@ -119,7 +119,7 @@ BEGIN {
 /^>/ {
     sub(/^>[ \t]*/, "")
 
-    printf "<blockquote><p>&ldquo;%s&rdquo;</p></blockquote>", $0
+    printf "<blockquote>%s</blockquote>", $0
     next
 }
 
@@ -147,7 +147,7 @@ BEGIN {
         text = url
     }
 
-    printf "<p><code>=&gt;</code> <a href=\"%s\">%s</a></p>", url, text
+    printf "<p><a href=\"%s\">%s</a></p>", url, text
     next
 }