diff options
author | jwinnie <jwinnie@tilde.institute> | 2021-11-29 21:40:12 -0500 |
---|---|---|
committer | jwinnie <jwinnie@tilde.institute> | 2021-11-29 21:40:12 -0500 |
commit | 29cdd995bec13064b7dbf9f36b5831388fb6d93c (patch) | |
tree | 5ab917aef1a8e3124c83e34b7d4ab4e5e2ce3d58 | |
parent | 0af52bf531c64f6b7d0c10bdbce8dc0cd9bf1661 (diff) | |
download | gmi2html-29cdd995bec13064b7dbf9f36b5831388fb6d93c.tar.gz |
Remove unsemantic HTML decorations (use CSS instead!)
-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 } |