diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 11:40:40 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 11:40:40 +0200 |
commit | ee967aa634b5f8e9d30329d587538f1371a5da95 (patch) | |
tree | cdc1461c822e440b24428eb8d431881e216ab8bd /src/construct/mod.rs | |
parent | 13135666fac476f3cd6f059147f496533b304097 (diff) | |
download | markdown-rs-ee967aa634b5f8e9d30329d587538f1371a5da95.tar.gz markdown-rs-ee967aa634b5f8e9d30329d587538f1371a5da95.tar.bz2 markdown-rs-ee967aa634b5f8e9d30329d587538f1371a5da95.zip |
Refactor to move `content` to `construct`
Diffstat (limited to 'src/construct/mod.rs')
-rw-r--r-- | src/construct/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/construct/mod.rs b/src/construct/mod.rs index 566bb30..49868e9 100644 --- a/src/construct/mod.rs +++ b/src/construct/mod.rs @@ -76,6 +76,8 @@ pub mod code_fenced; pub mod code_indented; pub mod code_text; pub mod definition; +pub mod document; +pub mod flow; pub mod hard_break_escape; pub mod heading_atx; pub mod heading_setext; @@ -95,4 +97,6 @@ pub mod partial_space_or_tab; pub mod partial_space_or_tab_eol; pub mod partial_title; pub mod partial_whitespace; +pub mod string; +pub mod text; pub mod thematic_break; |