mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
891805763e
Asciidoc appears to insert './images' references when using the admonitionblock. Clean that up in the post processing of the user manual for HTML. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
8 lines
360 B
Bash
Executable file
8 lines
360 B
Bash
Executable file
#!/bin/bash
|
|
cat $1 | \
|
|
sed -e '1,/title/d;/<\/head>/,/<body/d;/<\/body/,/<\/html/d' | \
|
|
sed -e '/^@media/,/^}/d' | \
|
|
sed -e 's/src="images/src="\/images/g' | \
|
|
sed -e 's/src="\.\/images/src="\/images/g' | \
|
|
sed -e 's/src="mobile-images/src="\/mobile-images/g' | \
|
|
html-minifier --collapse-whitespace --keep-closing-slash --minify-js --minify-css > $1.wp
|