diff options
author | pux <pux@pux.dom> | 2021-08-20 12:35:29 +0200 |
---|---|---|
committer | pux <pux@pux.dom> | 2021-08-20 12:35:29 +0200 |
commit | 2ac5242495fa8bda51342bd04d1f9aba762dcbf1 (patch) | |
tree | 7771b47e5801feb19744dcdeefedb694e1d5db75 /update.sh | |
parent | 13ab526a3731b02df4bebd41eb71561f21662937 (diff) | |
download | fenix_lr40r_diffusor-2ac5242495fa8bda51342bd04d1f9aba762dcbf1.tar.gz fenix_lr40r_diffusor-2ac5242495fa8bda51342bd04d1f9aba762dcbf1.tar.bz2 fenix_lr40r_diffusor-2ac5242495fa8bda51342bd04d1f9aba762dcbf1.zip |
update md2html: no self-contained htmls!
Diffstat (limited to 'update.sh')
-rwxr-xr-x | update.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,7 +8,8 @@ do filename_wo_ext=$(echo "$i" | cut -f 1 -d '.') if [ $filename_wo_ext != "template" ] && [ $filename_wo_ext != "INDEX_template" ] then - pandoc $i -s --highlight-style pygments --css=style.css --self-contained -t html5 -o $filename_wo_ext.html + #pandoc $i -s --highlight-style pygments --css=style.css --self-contained -t html5 -o $filename_wo_ext.html + pandoc $i -s --highlight-style pygments --css=style.css -t html5 -o $filename_wo_ext.html if [ $filename_wo_ext != "INDEX" ] then |