1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-07-22 10:47:45 +02:00

Fix htmlize

This commit is contained in:
Anthony Scemama 2021-04-21 13:17:33 +02:00
parent 59d56f6b27
commit 8882b4b3d4
4 changed files with 29 additions and 33 deletions

View File

@ -581,12 +581,10 @@ function extract_doc()
#+begin_src bash :noweb yes #+begin_src bash :noweb yes
function main() { function main() {
[[ check_preconditions ]] \ check_preconditions || exit 1
|| exit 1
# Install htmlize if needed # Install htmlize if needed
[[ install_htmlize ]] \ install_htmlize || exit 2
|| exit 2
# Create documentation # Create documentation
cd ${SRC} \ cd ${SRC} \

View File

@ -101,12 +101,10 @@ function extract_doc()
function main() { function main() {
[[ check_preconditions ]] \ check_preconditions || exit 1
|| exit 1
# Install htmlize if needed # Install htmlize if needed
[[ install_htmlize ]] \ install_htmlize || exit 2
|| exit 2
# Create documentation # Create documentation
cd ${SRC} \ cd ${SRC} \