diff options
author | elioat@tilde.institute <eli@newstartmobile.com> | 2023-01-15 22:25:59 -0500 |
---|---|---|
committer | elioat@tilde.institute <eli@newstartmobile.com> | 2023-01-15 22:25:59 -0500 |
commit | 3a9909a366aa4517f0b88cea920e7620f1b78c84 (patch) | |
tree | 0a0e704636b708c3ae89db98d38df35c581f82eb /mynah | |
parent | 16f7f96a9f1815091d6dc69ef96a19a64d416ab9 (diff) | |
download | wiki-3a9909a366aa4517f0b88cea920e7620f1b78c84.tar.gz |
*
Diffstat (limited to 'mynah')
-rwxr-xr-x | mynah | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mynah b/mynah index e42250d..cf9c876 100755 --- a/mynah +++ b/mynah @@ -45,7 +45,7 @@ build_logs() { echo -e "$archive_entry" >> ../archive.md done cd .. - pandoc archive.md -o public/archive.html + pandoc -c styles.css -s archive.md -o public/archive.html } build() { @@ -64,7 +64,7 @@ build() { (( i++ )) updated_at="- [${file%.*}](${SITEURL}/${file%.*}.html), ${RFC822}" echo -e "$updated_at\n$(cat ../changelog.md)" > ../changelog.md - pandoc "${file}" -o ../public/"${file%.*}".html + pandoc -c ../styles.css -s "${file}" -o ../public/"${file%.*}".html rss_entry='<item> <title> <![CDATA[ the page "'${file%.*}'" was updated! ]]> |