blob: 9df74cc7624e4632712428619a56b93ad1b11e41 (
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
|
#!/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 "</div></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>
<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
|