markdown in HTML

This commit is contained in:
Deborah Barnard
2023-02-02 15:00:00 +00:00
parent 913f099a99
commit c54cf726c0
6 changed files with 63 additions and 57 deletions

View File

@@ -0,0 +1,6 @@
```js
// Input
{{ [{"type":"fruit", "name":"apple"},{"type":"vegetable", "name":"carrot"} ].smartJoin("type","name") }}
// Output
[Object: {"fruit":"apple","vegetable":"carrot"}]
```