summaryrefslogtreecommitdiff
path: root/src/syntax/node.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/node.rs')
-rw-r--r--src/syntax/node.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/syntax/node.rs b/src/syntax/node.rs
index fe9767a1..246790f6 100644
--- a/src/syntax/node.rs
+++ b/src/syntax/node.rs
@@ -31,6 +31,7 @@ impl Pretty for Node {
Self::Space => p.push(' '),
Self::Linebreak => p.push_str(r"\"),
Self::Parbreak => p.push_str("\n\n"),
+ // TODO: Handle escaping.
Self::Text(text) => p.push_str(&text),
Self::Heading(heading) => heading.pretty(p),
Self::Raw(raw) => raw.pretty(p),