diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-03-16 06:50:05 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-03-16 06:50:05 -0700 |
commit | ff821bd81ecb0e2c6ac82174581c30484ce08a38 (patch) | |
tree | fa471f24df67d8716da877113ec84efa48879d38 | |
parent | fd6479110c4a8ee36543fdfe961d6fc3009ff434 (diff) | |
download | txr-ff821bd81ecb0e2c6ac82174581c30484ce08a38.tar.gz txr-ff821bd81ecb0e2c6ac82174581c30484ce08a38.tar.bz2 txr-ff821bd81ecb0e2c6ac82174581c30484ce08a38.zip |
TXR query for cleaning Inkscape SVG.
* win/cleansvg.txr: New file.
-rwxr-xr-x | win/cleansvg.txr | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/win/cleansvg.txr b/win/cleansvg.txr new file mode 100755 index 00000000..bf8de769 --- /dev/null +++ b/win/cleansvg.txr @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg +@(skip) + xmlns="@xmlns" +@(skip) + width="@width" + height="@height" + id="@id" + version="@ver" +@(skip) + <g +@(skip) + transform="@outertrans"> +@(skip) + <g + style="@nil" + id="@nil" + transform="@innertrans"> + <path + d="@pathdata" +@(skip) +</svg> +@(output) +<?xml version="1.0" encoding="UTF-8" standalone="no"?> + +<!-- TXR Logo + Copyright 2017 Kaz Kylheku <kaz@@kylheku.com> --> + +<svg xmlns="@xmlns" + viewBox="0 0 @width @height" + id="@id" + version="@ver"> + <g transform="@outertrans"> + <g transform="@innertrans"> + <path d="@pathdata"/> + </g> + </g> +</svg> +@(end) |