Created SVG support (markdown)
parent
a2f8f0eab8
commit
a2fae34a96
1 changed files with 82 additions and 0 deletions
82
SVG-support.md
Normal file
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>`
|
Loading…
Reference in a new issue