From 17f4eec55ad0a5f74aedbcff6c2f0119ad52e584 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Fri, 10 Jun 2022 16:47:43 +0200 Subject: Add text content type * Add character reference and character escapes in text * Add recursive subtokenization --- src/content/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/content/mod.rs') diff --git a/src/content/mod.rs b/src/content/mod.rs index 4c0a7f4..d13df79 100644 --- a/src/content/mod.rs +++ b/src/content/mod.rs @@ -4,3 +4,4 @@ pub mod content; pub mod flow; pub mod string; +pub mod text; -- cgit