We used to build Jekyll docs before passing them on to Prince on my Linux box.
Now, we build them in a Docker container to be toolchain-agnostic. For example:
Before, there were no issues, but now Prince keeps throwing the following warning numerous times (and the longer the guide, the more warnings occur.
Why is this happening and what am I doing wrong?
Now, we build them in a Docker container to be toolchain-agnostic. For example:
docker run -ti --rm --user $(id -u):$(id -g) --name docs-container -v "$(pwd)":/src:rw -P --detach --network host docs-builder serve --config "_config.yml,pdfconfigs/${JEKYLL_CONFIG}"
Before, there were no issues, but now Prince keeps throwing the following warning numerous times (and the longer the guide, the more warnings occur.
prince: warning: document.write is not yet supported
Why is this happening and what am I doing wrong?