| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function help_updateOutputFileHtml { |
| |
| |
| cli_printMessage "${MANUAL_BASEFILE}-html" 'AsUpdatingLine' |
| |
| |
| [[ ! -d ${MANUAL_BASEFILE}-html ]] && mkdir -p ${MANUAL_BASEFILE}-html |
| |
| |
| |
| |
| pushd ${MANUAL_BASEFILE}-html > /dev/null |
| |
| |
| |
| texi2html ${MANUAL_BASEFILE}.texi --output=${MANUAL_BASEFILE}-html --split section \ |
| --nosec-nav \ |
| --css-include=${HOME}/artwork/trunk/Identity/Models/Css/Texi2html/stylesheet.css \ |
| -I=${HOME}/artwork |
| |
| |
| |
| |
| |
| |
| sed -r -i \ |
| -f ${HOME}/artwork/trunk/Identity/Models/Css/Texi2html/transformations.sed \ |
| ${MANUAL_BASEFILE}-html/*.html |
| |
| |
| popd > /dev/null |
| |
| } |