Initial commit
This commit is contained in:
commit
cefd40b6dc
31 changed files with 1028 additions and 0 deletions
7
bin/pdftosvg
Executable file
7
bin/pdftosvg
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/zsh
|
||||
for i in "$@"; do
|
||||
inkscape --without-gui --file=$i --export-plain-svg=/dev/stdout \
|
||||
| tr -d '\n' \
|
||||
| sed -e 's!</\?tspan[^>]*>!!g' \
|
||||
| xmllint --compress /dev/stdin --output ${i:r}.svg
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue