You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,23 @@ const options = {
78
78
};
79
79
```
80
80
81
+
## Advanced
82
+
83
+
If you need to edit the output svg for your use case, blobs also allows for _editable_ output.
84
+
85
+
```typescript
86
+
import*asblobsfrom"blobs";
87
+
88
+
const editableSvg =blobs.editable(options);
89
+
```
90
+
91
+
The output of this function is a data structure that represents a nested svg document. This structure can be changed and rendered to a string using its `render` function.
0 commit comments