Remove unneeded prop

This commit is contained in:
Florian Schroedl
2022-05-04 17:00:00 +02:00
parent 8a796bb311
commit 4b59ac3727

View File

@@ -110,7 +110,6 @@ type
level*: int
todo*: Option[string]
headlineContent*: seq[OrgInlineBlock]
headlineChildrenText*: string
## OrgBlock.PrettyPrinters
@@ -120,7 +119,6 @@ func pprint*(x: OrgBlock, indent = 0): string =
("level", $x.level, true),
("todo", $x.todo, x.todo.isSome()),
("headlineContent", $x.headlineContent, x.headlineContent.len != 0),
("headlineChildrenText", $x.headlineChildrenText, x.headlineChildrenText.len != 0),
("children", $x.children, x.children.len != 0),
]
.stringifyFields()