diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-20 17:06:00 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-20 17:06:00 +0200 |
commit | 65dd765cceee8bdccc74c08066eec59a579a16b1 (patch) | |
tree | cb60ab00039135b6f0a65efcb508f73a8b39aa11 /src/construct/mod.rs | |
parent | 61271d73128f8553f8c4c17927828cde52a25eba (diff) | |
download | markdown-rs-65dd765cceee8bdccc74c08066eec59a579a16b1.tar.gz markdown-rs-65dd765cceee8bdccc74c08066eec59a579a16b1.tar.bz2 markdown-rs-65dd765cceee8bdccc74c08066eec59a579a16b1.zip |
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
Diffstat (limited to 'src/construct/mod.rs')
-rw-r--r-- | src/construct/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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; |