diff options
author | elioat <hi@eli.li> | 2023-01-04 15:28:43 -0500 |
---|---|---|
committer | elioat <hi@eli.li> | 2023-01-04 15:28:43 -0500 |
commit | 9e37c712d785986bb20944ba935db5164dc03ccd (patch) | |
tree | 26968f38149f0451d5139482cbf8d3f9f92f57a0 /forth | |
parent | 9c97e19005a7560950a12ab86bae4e3cd0f0d198 (diff) | |
download | tour-9e37c712d785986bb20944ba935db5164dc03ccd.tar.gz |
updated forth gmi2html script
Diffstat (limited to 'forth')
-rw-r--r-- | forth/gmi2html.fs | 7 |
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 -- ) |