From 65dd765cceee8bdccc74c08066eec59a579a16b1 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 20 Jun 2022 17:06:00 +0200 Subject: Add improved whitespace handling * add several helpers for parsing betwen x and y `space_or_tab`s * use those helpers in a bunch of places * move initial indent parsing to flow constructs themselves --- src/construct/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/construct/mod.rs') diff --git a/src/construct/mod.rs b/src/construct/mod.rs index 1debb74..407dc6b 100644 --- a/src/construct/mod.rs +++ b/src/construct/mod.rs @@ -70,6 +70,6 @@ pub mod html_text; pub mod paragraph; pub mod partial_destination; pub mod partial_label; +pub mod partial_space_or_tab; pub mod partial_title; -pub mod partial_whitespace; pub mod thematic_break; -- cgit