1
0
Fork 0
freesewing/markdown/dev/reference/api/svg/defs/en.md

35 lines
549 B
Markdown
Raw Normal View History

---
title: Svg.defs
---
The `Svg.defs` property holds a string that will be rendered as [the defs
section](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs) of the
SVG document.
## Signature
```svg
<defs>
/* svg.defs will be inserted */
</defs>
```
2022-02-19 08:04:25 +01:00
## Notes
The defs attribute is where plugins will add additional snippets.
2022-02-19 08:04:25 +01:00
When adding your own defs, it's important not to
overwrite this property, but rather add your own.
In other words, do this:
```js
svg.defs += myDefs
```
2022-02-19 08:04:25 +01:00
and don't do this:
```js
svg.defs = myDefs
```