aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/label_end.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-08-11 15:54:13 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-08-11 15:54:13 +0200
commit3048b7aca0690691d25cb8409d543b2377e065e1 (patch)
tree565aa373293f69fc5c80bc4ef48e4af904ab2134 /src/construct/label_end.rs
parentcf9f0039911597cd5c9bc8e98f61b5df09b02130 (diff)
downloadmarkdown-rs-3048b7aca0690691d25cb8409d543b2377e065e1.tar.gz
markdown-rs-3048b7aca0690691d25cb8409d543b2377e065e1.tar.bz2
markdown-rs-3048b7aca0690691d25cb8409d543b2377e065e1.zip
Refactor to move `space_or_tab_eol` to own file
Diffstat (limited to '')
-rw-r--r--src/construct/label_end.rs46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/construct/label_end.rs b/src/construct/label_end.rs
index f27d79f..26dcf6b 100644
--- a/src/construct/label_end.rs
+++ b/src/construct/label_end.rs
@@ -102,28 +102,28 @@
//!
//! ## Tokens
//!
-//! * [`Data`][Token::Data]
-//! * [`Image`][Token::Image]
-//! * [`Label`][Token::Label]
-//! * [`LabelEnd`][Token::LabelEnd]
-//! * [`LabelMarker`][Token::LabelMarker]
-//! * [`LabelText`][Token::LabelText]
-//! * [`LineEnding`][Token::LineEnding]
-//! * [`Link`][Token::Link]
-//! * [`Reference`][Token::Reference]
-//! * [`ReferenceMarker`][Token::ReferenceMarker]
-//! * [`ReferenceString`][Token::ReferenceString]
-//! * [`Resource`][Token::Resource]
-//! * [`ResourceDestination`][Token::ResourceDestination]
-//! * [`ResourceDestinationLiteral`][Token::ResourceDestinationLiteral]
-//! * [`ResourceDestinationLiteralMarker`][Token::ResourceDestinationLiteralMarker]
-//! * [`ResourceDestinationRaw`][Token::ResourceDestinationRaw]
-//! * [`ResourceDestinationString`][Token::ResourceDestinationString]
-//! * [`ResourceMarker`][Token::ResourceMarker]
-//! * [`ResourceTitle`][Token::ResourceTitle]
-//! * [`ResourceTitleMarker`][Token::ResourceTitleMarker]
-//! * [`ResourceTitleString`][Token::ResourceTitleString]
-//! * [`SpaceOrTab`][Token::SpaceOrTab]
+//! * [`Data`][Name::Data]
+//! * [`Image`][Name::Image]
+//! * [`Label`][Name::Label]
+//! * [`LabelEnd`][Name::LabelEnd]
+//! * [`LabelMarker`][Name::LabelMarker]
+//! * [`LabelText`][Name::LabelText]
+//! * [`LineEnding`][Name::LineEnding]
+//! * [`Link`][Name::Link]
+//! * [`Reference`][Name::Reference]
+//! * [`ReferenceMarker`][Name::ReferenceMarker]
+//! * [`ReferenceString`][Name::ReferenceString]
+//! * [`Resource`][Name::Resource]
+//! * [`ResourceDestination`][Name::ResourceDestination]
+//! * [`ResourceDestinationLiteral`][Name::ResourceDestinationLiteral]
+//! * [`ResourceDestinationLiteralMarker`][Name::ResourceDestinationLiteralMarker]
+//! * [`ResourceDestinationRaw`][Name::ResourceDestinationRaw]
+//! * [`ResourceDestinationString`][Name::ResourceDestinationString]
+//! * [`ResourceMarker`][Name::ResourceMarker]
+//! * [`ResourceTitle`][Name::ResourceTitle]
+//! * [`ResourceTitleMarker`][Name::ResourceTitleMarker]
+//! * [`ResourceTitleString`][Name::ResourceTitleString]
+//! * [`SpaceOrTab`][Name::SpaceOrTab]
//!
//! ## References
//!
@@ -147,7 +147,7 @@
//! [html-img]: https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element
use crate::constant::RESOURCE_DESTINATION_BALANCE_MAX;
-use crate::construct::partial_space_or_tab::space_or_tab_eol;
+use crate::construct::partial_space_or_tab_eol::space_or_tab_eol;
use crate::event::{Event, Kind, Name};
use crate::resolve::Name as ResolveName;
use crate::state::{Name as StateName, State};