diff options
author | 2022-07-15 12:35:35 +0200 | |
---|---|---|
committer | 2022-07-15 12:36:36 +0200 | |
commit | 8c438ea9c8fb5c605d8b179637ced6971d8902e7 (patch) | |
tree | 33f6067ba18a688d3ce1b3456c2e9c3f7c140898 /src/token.rs | |
parent | 66c70d1b917976c32b770e5d724fc4e47a2309c6 (diff) | |
download | markdown-rs-8c438ea9c8fb5c605d8b179637ced6971d8902e7.tar.gz markdown-rs-8c438ea9c8fb5c605d8b179637ced6971d8902e7.tar.bz2 markdown-rs-8c438ea9c8fb5c605d8b179637ced6971d8902e7.zip |
Remove unneeded token
Diffstat (limited to '')
-rw-r--r-- | src/token.rs | 21 |
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 |