-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Should match -# elements (aka captions) as a new node type.
For example:
Foo
-# bar **baz**
Is rendered as:

And should be parsed as:
[
{'node_type': 'TEXT', 'content': 'Foo\n', 'children': []},
{'node_type': 'CAPTION', 'content': 'bar **baz**', 'children': [
{'node_type': 'TEXT', 'content': 'bar ', 'children': []},
{'node_type': 'BOLD', 'content': 'baz', 'children': [
{'node_type': 'TEXT', 'content': 'baz', 'children': []}
]}
]}
]Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request