diff options
author | axtlos <axtlos@tar.black> | 2023-03-08 18:22:07 +0100 |
---|---|---|
committer | axtlos <axtlos@tar.black> | 2023-03-08 18:22:07 +0100 |
commit | 6dd8523ab9e74cb272731a32b02c2aa538814c97 (patch) | |
tree | a31bdf833ccda962eb4f0b93619689ae7e8f6172 | |
parent | 898c1c23e10c12b3fe0b4bc572ff5dbc88c42c14 (diff) | |
download | website-6dd8523ab9e74cb272731a32b02c2aa538814c97.tar.gz website-6dd8523ab9e74cb272731a32b02c2aa538814c97.tar.bz2 |
Update generate.sh script
Diffstat (limited to '')
-rwxr-xr-x | generate.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/generate.sh b/generate.sh index 5b49d18..8fba86b 100755 --- a/generate.sh +++ b/generate.sh @@ -2,6 +2,9 @@ echo "Generate html" mandoc -T html -O style=./style.css website.7 > website.7.html +echo "Change fedi hyperlink style" +sed 's|<p class="Pp">- <a class="Lk" href="https://snowdin.town/axtlos">Fedi</a></p>|<p class="Pp">- <i class="Em">Fedi:</i> <a class="Lk" rel="me" href="https://snowdin.town/axtlos">https://snowdin.town/axtlos</a></p>|g' website.7.html > website.7.html.tmp +mv website.7.html.tmp website.7.html echo "Adding Gifs" sed 's|</body>|<img src="https://cyber.dabamos.de/88x31/delete-twitter.gif" alt="delete twitter, make a neocities!"/>\n<img src="https://cyber.dabamos.de/88x31/antinazi.gif" alt="No nazis! No fascists! No racism!"/>\n<img src="https://cyber.dabamos.de/88x31/rainbow_bev.gif" alt="Pride flag"/>\n</body>|g' website.7.html > website.7.html.tmp mv website.7.html.tmp website.7.html |