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 | a84c57637e8a35cd3f16fec94bbc43f68cd41eb3 (patch) | |
tree | fa471f24df67d8716da877113ec84efa48879d38 /win | |
parent | 3af7437a592197c743b1bb6ef465637c9bf15519 (diff) | |
download | txr-a84c57637e8a35cd3f16fec94bbc43f68cd41eb3.tar.gz txr-a84c57637e8a35cd3f16fec94bbc43f68cd41eb3.tar.bz2 txr-a84c57637e8a35cd3f16fec94bbc43f68cd41eb3.zip |
TXR query for cleaning Inkscape SVG.
* win/cleansvg.txr: New file.
Diffstat (limited to 'win')
-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) |