Moved style.css to static directory

This commit is contained in:
Jocelyn 2024-11-26 20:45:38 +01:00
parent c99afd569d
commit 5d0cbfc000
2 changed files with 1 additions and 1 deletions

View file

@ -5,7 +5,7 @@ source_to_target() { sed -E -e 's:\.\./src/:\./:' -e 's/.md$/.html/'; }
shopt -s globstar
rm -rf dist/
mkdir dist&&cd dist
cp ../style.css .
cp -r ../static/* .
for file in $(du -a ../src/ | cut -f2 | grep -E '.md$'); do
target="$(echo $file | source_to_target)"
export CONTENT="$(pandoc --from markdown+emoji --wrap=none -i $file)"