g9srv/gemtohtm

6 lines
230 B
Plaintext
Raw Normal View History

2021-05-28 03:10:01 +00:00
$1 == "#" { print "<h1>", $0, "</h1>"; next}
$1 == "##" { print "<h2>", $0, "</h2>"; next}
$1 == "###" { print "<h3>", $0, "</h3>"; next}
$1 == "=>" { print "<a href=\"", $2, "\">" substr($0,index($0,$3)), "</a>"; next}
{ print }