We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi @roberth-k,
I was surprised to discover how quick and easy the size of the docset can be reduced when minifying the html contents.
I was able to reduce the size of docset from ca. 130mb to ca. 123mb by calling minify-html and parallel with:
minify-html
parallel
find .build/1.5.2.230709/Terraform.docset/Contents/Resources/Documents/ -type f -regex '.*\.\(htm\|html\)$' | parallel ./minify-html --output {} --keep-closing-tags --minify-css {} \; || true
While this was just a first test I think it's definitely worth considering to integrate this into the ci workflow.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi @roberth-k,
I was surprised to discover how quick and easy the size of the docset can be reduced when minifying the html contents.
I was able to reduce the size of docset from ca. 130mb to ca. 123mb by calling
minify-html
andparallel
with:While this was just a first test I think it's definitely worth considering to integrate this into the ci workflow.
The text was updated successfully, but these errors were encountered: