diff options
author | Case Duckworth | 2022-07-25 12:39:29 -0500 |
---|---|---|
committer | Case Duckworth | 2022-07-25 12:39:29 -0500 |
commit | 1c353fbaaf06a104d2f9e6dcab85317455f97eb0 (patch) | |
tree | cc7e0894449fb029721f59f06671173c1a5c53ce | |
parent | Reorganize a few things (diff) | |
download | sfeed-1c353fbaaf06a104d2f9e6dcab85317455f97eb0.tar.gz sfeed-1c353fbaaf06a104d2f9e6dcab85317455f97eb0.zip |
Correct spacing
-rwxr-xr-x | sfeed_html.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfeed_html.awk b/sfeed_html.awk index 70226a7..447c26a 100755 --- a/sfeed_html.awk +++ b/sfeed_html.awk | |||
@@ -290,7 +290,7 @@ function html_top() | |||
290 | print "<h1>" | 290 | print "<h1>" |
291 | printf "<a id=\"logo\" href=\"index.html\"><img src=\"mars-eyes.png\"" | 291 | printf "<a id=\"logo\" href=\"index.html\"><img src=\"mars-eyes.png\"" |
292 | printf " title=\"%s\" ", LOGO_TITLE | 292 | printf " title=\"%s\" ", LOGO_TITLE |
293 | printf "width=\"40\" height=\"39\"" | 293 | printf "width=\"40\" height=\"39\" " |
294 | print "alt=\"mars, but with eyes\" /></a>" | 294 | print "alt=\"mars, but with eyes\" /></a>" |
295 | print TITLE "</h1>" | 295 | print TITLE "</h1>" |
296 | print "<p id=\"last-updated\">last updated at <time>" UPDATE_TIME "</time></p>" | 296 | print "<p id=\"last-updated\">last updated at <time>" UPDATE_TIME "</time></p>" |
@@ -315,7 +315,7 @@ function print_link(href, title, text, class) | |||
315 | link = link " class=\"" class "\"" | 315 | link = link " class=\"" class "\"" |
316 | } | 316 | } |
317 | link = link " title=\"" title "\"" | 317 | link = link " title=\"" title "\"" |
318 | link = link "rel=\"nofollow\" target=\"_blank\">" | 318 | link = link " rel=\"nofollow\" target=\"_blank\">" |
319 | link = link text | 319 | link = link text |
320 | link = link "</a>" | 320 | link = link "</a>" |
321 | bufprint(link, 0) | 321 | bufprint(link, 0) |