aboutsummaryrefslogtreecommitdiffstats
path: root/src/token.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/token.rs21
1 files changed, 1 insertions, 20 deletions
diff --git a/src/token.rs b/src/token.rs
index 825b9cd..8169657 100644
--- a/src/token.rs
+++ b/src/token.rs
@@ -145,7 +145,7 @@ pub enum Token {
/// [`BlockQuote`][Token::BlockQuote]
/// * **Content model**:
/// [`BlockQuoteMarker`][Token::BlockQuoteMarker],
- /// [`BlockQuoteWhitespace`][Token::BlockQuoteWhitespace]
+ /// [`SpaceOrTab`][Token::SpaceOrTab]
/// * **Construct**:
/// [`block_quote`][crate::construct::block_quote]
///
@@ -157,25 +157,6 @@ pub enum Token {
/// | b
/// ```
BlockQuotePrefix,
- /// Block quote white space.
- ///
- /// ## Info
- ///
- /// * **Context**:
- /// [`BlockQuotePrefix`][Token::BlockQuotePrefix]
- /// * **Content model**:
- /// void
- /// * **Construct**:
- /// [`block_quote`][crate::construct::block_quote]
- ///
- /// ## Example
- ///
- /// ```markdown
- /// > | > a
- /// ^
- /// | b
- /// ```
- BlockQuoteWhitespace,
/// Whole character escape.
///
/// ## Info