Restructuring the repo

This commit is contained in:
Alexander Gehrke 2020-04-02 10:38:36 +02:00
parent 21e3cf65e6
commit 3d67598c27
45 changed files with 368 additions and 77 deletions

7
misc/pdftosvg Executable file
View 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