2017-12-02 23:59:03 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-12-03 00:08:21 +00:00
|
|
|
# USAGE: ./run.sh ( install | test_ludochaordic )
|
2017-12-02 23:59:03 +00:00
|
|
|
|
|
|
|
set -o pipefail -o errexit -o nounset -o xtrace
|
|
|
|
|
|
|
|
install () {
|
2017-12-04 22:53:23 +00:00
|
|
|
pip install pelican markdown beautifulsoup4 pillow
|
|
|
|
./gen_statics_bundles.py
|
|
|
|
}
|
|
|
|
|
|
|
|
install_dev () {
|
2017-12-05 08:04:20 +00:00
|
|
|
npm install -g eslint eslint-config-strict eslint-plugin-filenames stylelint
|
|
|
|
npm install stylelint-config-standard
|
2017-12-03 00:08:21 +00:00
|
|
|
pip install pre-commit
|
2017-12-02 23:59:03 +00:00
|
|
|
pre-commit install
|
|
|
|
}
|
|
|
|
|
|
|
|
test_ludochaordic () {
|
|
|
|
cd ..
|
|
|
|
git clone https://github.com/getpelican/pelican-plugins.git
|
|
|
|
cd pelican-plugins
|
|
|
|
git submodule update --init image_process representative_image tag_cloud
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
git clone https://github.com/Lucas-C/ludochaordic.git
|
|
|
|
cd ludochaordic
|
|
|
|
|
2017-12-05 08:04:20 +00:00
|
|
|
npm install -g htmlhint
|
2017-12-04 22:53:23 +00:00
|
|
|
pip install html5lib html5validator
|
2017-12-03 00:08:21 +00:00
|
|
|
|
2017-12-03 00:03:01 +00:00
|
|
|
../pelican-mg/gen_imgs_from_mds.py content/*.md
|
2017-12-02 23:59:03 +00:00
|
|
|
make DEBUG=1 OUTPUTDIR=output html
|
|
|
|
|
2017-12-03 16:26:55 +00:00
|
|
|
html5validator --root output/ \
|
2018-01-31 08:14:17 +00:00
|
|
|
--ignore='Element "style" not allowed as child of element "section" in this context.' \
|
2017-12-03 16:26:55 +00:00
|
|
|
--ignore='Element "style" not allowed as child of element "div" in this context.'
|
2017-12-05 08:04:20 +00:00
|
|
|
|
2017-12-03 16:34:54 +00:00
|
|
|
cp ../pelican-mg/.htmlhintrc output/
|
2017-12-02 23:59:03 +00:00
|
|
|
htmlhint output/
|
|
|
|
}
|
|
|
|
|
|
|
|
eval "$1"
|