aboutsummaryrefslogtreecommitdiffstats
path: root/src/content
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/construct/document.rs (renamed from src/content/document.rs)0
-rw-r--r--src/construct/flow.rs (renamed from src/content/flow.rs)0
-rw-r--r--src/construct/string.rs (renamed from src/content/string.rs)2
-rw-r--r--src/construct/text.rs (renamed from src/content/text.rs)0
-rw-r--r--src/content/mod.rs11
5 files changed, 1 insertions, 12 deletions
diff --git a/src/content/document.rs b/src/construct/document.rs
index 9def6c5..9def6c5 100644
--- a/src/content/document.rs
+++ b/src/construct/document.rs
diff --git a/src/content/flow.rs b/src/construct/flow.rs
index 08c7891..08c7891 100644
--- a/src/content/flow.rs
+++ b/src/construct/flow.rs
diff --git a/src/content/string.rs b/src/construct/string.rs
index ec4fce2..698a51d 100644
--- a/src/content/string.rs
+++ b/src/construct/string.rs
@@ -10,7 +10,7 @@
//! * [Character escape][crate::construct::character_escape]
//! * [Character reference][crate::construct::character_reference]
//!
-//! [text]: crate::content::text
+//! [text]: crate::construct::text
use crate::construct::partial_whitespace::resolve_whitespace;
use crate::resolve::Name as ResolveName;
diff --git a/src/content/text.rs b/src/construct/text.rs
index 5c13dba..5c13dba 100644
--- a/src/content/text.rs
+++ b/src/construct/text.rs
diff --git a/src/content/mod.rs b/src/content/mod.rs
deleted file mode 100644
index af40cc0..0000000
--- a/src/content/mod.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-//! Content types found in markdown.
-//!
-//! * [document][document]
-//! * [flow][flow]
-//! * [string][string]
-//! * [text][text]
-
-pub mod document;
-pub mod flow;
-pub mod string;
-pub mod text;