Created SVG support (markdown)

Artem Pavlenko 2017-06-20 10:20:42 +02:00
parent a2f8f0eab8
commit a2fae34a96

82
SVG-support.md Normal file

@ -0,0 +1,82 @@
## Supported SVG elements
https://github.com/mapnik/mapnik/tree/svg-strict-parsing
### `<svg>`
| attribute | value |
| --------- | ----- |
| width | |
| height | |
| viewBox | |
### `<path>`
| attribute | value |
| --------- | ----- |
| d | |
### `<polygon>`
| attribute | value |
| --------- | ----- |
| points | |
### `<polyline>`
| attribute | value |
| --------- | ----- |
| points | |
### `<line>`
| attribute | value |
| --------- | ----- |
| x1 | |
| y1 | |
| x2 | |
| y2 | |
### `<rect>`
| attribute | value |
| --------- | ----- |
| x | |
| y | |
| width | |
| height | |
| rx | |
| ry | |
### `<circle>`
| attribute | value |
| --------- | ----- |
| cx | |
| cy | |
| r | |
### `<ellipse>`
| attribute | value |
| --------- | ----- |
| cx | |
| cy | |
| rx | |
| ry | |
### `<g>`
### `<use>`
### `<linearGradient>`
### `<radialGradient>`
### `<symbol>`
### `<defs>`