blob: f4c7ad30b2d058fd9df276def338ba414da30c78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/sh
mkdir -p dest
cp logo-* style.css dest
cat _index_header.html > dest/index.html
for f in $(find itemy -name '*.md'); do
file=$(basename $f .md)
cp itemy/$file.jpg dest/$file.jpg
title=$(grep '^# ' $f | head -n 1 | cut -c 3-)
echo "<li><a href=\"$file.html\">$title</a></li>" >> dest/index.html
cat _header.html > dest/$file.html
sed 's/^# \(.*\)/<h2>\1<\/h2>/' $f >> dest/$file.html
echo "</main>
<footer>
<hr>
<a href=\"https://zhr.niedzwiedzinski.cyou/harcdzielnia\">Harcdzielnia</a> |
<a href=\"https://git.niedzwiedzinski.cyou/zhr/harcdzielnia\">Współtwórz harcdzielnię</a>
</footer>
</body></html>" >> dest/$file.html
done
echo "</ul></main>
<footer>
<a href=\"https://siedemgor.pl/pl/p/Bluza-mundurowa-meska-ZHR-rozmiarowka/113#box_description\">Rozmiary mundurów</a>
<hr>
<a href=\"https://zhr.niedzwiedzinski.cyou/harcdzielnia\">Harcdzielnia</a> |
<a href=\"https://git.niedzwiedzinski.cyou/zhr/harcdzielnia\">Współtwórz harcdzielnię</a>
</footer>
</body></html>" >> dest/index.html
|