diff options
Diffstat (limited to 'client/menu/document/document.gd')
-rw-r--r-- | client/menu/document/document.gd | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/client/menu/document/document.gd b/client/menu/document/document.gd index 5c620213..6c4b0685 100644 --- a/client/menu/document/document.gd +++ b/client/menu/document/document.gd @@ -76,8 +76,12 @@ func build_document(element: Dictionary, bullet: bool = false) -> Control: node.name = "Paragraph" for e in element["es"]: node.add_child(build_document(e, bullet)) - #"ref": - # TODO, implement later + "ref": + # TODO, implement later + node = Control.new() + "conditional": + # Ignore all conditionals for now, since they are only revelant for typst version + node = Control.new() "text": node = text_node(element, bullet) _: |