clean up code

This commit is contained in:
Akbar Rahman 2021-05-01 11:29:48 +01:00
parent 3243b1cf64
commit c4b410c496

View File

@ -2,7 +2,7 @@
[[ "$1" == "--help" ]] && echo "USAGE: $0 [NOTES_DIRECTORY_1 [NOTES_DIRECTORY_2 [...]]]" && exit 0 [[ "$1" == "--help" ]] && echo "USAGE: $0 [NOTES_DIRECTORY_1 [NOTES_DIRECTORY_2 [...]]]" && exit 0
function _render { function _renderarticle {
echo "rendering $1" echo "rendering $1"
pandoc\ pandoc\
--toc\ --toc\
@ -14,15 +14,6 @@ function _render {
--mathjax --mathjax
} }
function _renderindex {
echo "rendering $1"
pandoc\
-t html\
--template /opt/notes2web/templates/index.html\
-o index.html\
"$1"
}
function _adddirtoindex { function _adddirtoindex {
dir="$(dirname "$1")" dir="$(dirname "$1")"
echo "<h1>$(basename "$dir") notes</h1>" >> index.md echo "<h1>$(basename "$dir") notes</h1>" >> index.md
@ -39,14 +30,14 @@ function _addarticletoindex {
>> index.md >> index.md
} }
export -f _render export -f _renderarticle
export -f _adddirtoindex export -f _adddirtoindex
export -f _addarticletoindex export -f _addarticletoindex
#render each markdown file #render each markdown file
for file in "$@" for file in "$@"
do do
find "$file" -name '*.md' -exec bash -c "_render '{}'" \; find "$file" -name '*.md' -exec bash -c "_renderarticle '{}'" \;
done done
# create an intermediate markdown file of links to each article # create an intermediate markdown file of links to each article
@ -59,9 +50,15 @@ do
[[ ! -f "$file" ]] && echo "the presence of this files tells notes2web that it should be added to the notes2web index" > "$file/.2web" [[ ! -f "$file" ]] && echo "the presence of this files tells notes2web that it should be added to the notes2web index" > "$file/.2web"
done done
# add articles to index
find -name '.2web' -exec bash -c "_adddirtoindex '{}'" \; find -name '.2web' -exec bash -c "_adddirtoindex '{}'" \;
_renderindex index.md echo "rendering index.md"
pandoc\
-t html\
--template /opt/notes2web/templates/index.html\
-o index.html\
"index.md"
echo "copying styles.css to current directory" echo "copying styles.css to current directory"
cp /opt/notes2web/styles.css . cp /opt/notes2web/styles.css .