diff options
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -10,7 +10,11 @@ header='<meta charset="UTF-8"> text-align: justify; } h1 { text-align: center } - pre { padding: 1ch; background-color: #f5f5f5 } + pre { + padding: 1ch; + background-color: #f5f5f5; + overflow: auto; + } </style> ' @@ -26,6 +30,7 @@ genhtml() ( echo "<!-- generated by build.sh. DO NOT EDIT. -->" echo "<html lang=\"${lang:-en}\">" echo "<title>$title</title>" + [ "$description" ] && echo "<meta name=\"description\" content=\"$description\">" echo "$header" [ "$1" != . ] && echo "<a href=\"..\">$blog_title</a><hr>" |
