1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-07-22 02:43:51 +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
function main() {
[[ check_preconditions ]] \
|| exit 1
check_preconditions || exit 1
# Install htmlize if needed
[[ install_htmlize ]] \
|| exit 2
install_htmlize || exit 2
# Create documentation
cd ${SRC} \

View File

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