diff options
Diffstat (limited to 'gmi2html.awk')
-rwxr-xr-x | gmi2html.awk | 4 |
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>“%s”</p></blockquote>", $0 + printf "<blockquote>%s</blockquote>", $0 next } @@ -147,7 +147,7 @@ BEGIN { text = url } - printf "<p><code>=></code> <a href=\"%s\">%s</a></p>", url, text + printf "<p><a href=\"%s\">%s</a></p>", url, text next } |