We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've been struggling to write a configuration for the nestedList tool plugin.
At first I thought the documentation said this was possible with "data" and "-".
But after looking at the example and struggling, I'm wondering if I misinterpreted the docs.
Has anybody successfully written a configuration for something like this
"type": "nestedList", "data": { "style": "unordered", "items": [ { "content": "content1", "items": [] }, { "content": "content1.1", "items": [ { "content": "content2", "items": [] } ] } ] }
The text was updated successfully, but these errors were encountered:
Hi! There is an example in Docs for the nested tool. Currently there is no support of recursive syntax.
"table": { "content": { "type": "array", "data": { "-": { "type": "array", "data": { "-": { "type": "string", "allowedTags": "i,b,a[href],code[class],mark[class]" } } } } } }
Sorry, something went wrong.
Ah. That's where I had misunderstood. I had assumed that nesting might be infinite. Thank you for clarifying! Love the work you guys have done!
No branches or pull requests
I've been struggling to write a configuration for the nestedList tool plugin.
At first I thought the documentation said this was possible with "data" and "-".
But after looking at the example and struggling, I'm wondering if I misinterpreted the docs.
Has anybody successfully written a configuration for something like this
The text was updated successfully, but these errors were encountered: