joplin-mdbooks-website/build
Stavros Korokithakis 4caaff6c90 Migrate to mdBook
2021-11-20 02:13:37 +00:00

12 lines
265 B
Bash
Executable File

#!/bin/bash
set -euxo pipefail
rm -rf public/
mdbook build -d public
# Make checkboxes editable, just in case the user wants to keep their own checklist.
find public/ -name "*.html" -type f -exec sed -i 's/input disabled=""/input/g' {} +
cp -R static/* public/