diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-11 15:54:13 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-11 15:54:13 +0200 |
commit | 3048b7aca0690691d25cb8409d543b2377e065e1 (patch) | |
tree | 565aa373293f69fc5c80bc4ef48e4af904ab2134 /src/construct/list.rs | |
parent | cf9f0039911597cd5c9bc8e98f61b5df09b02130 (diff) | |
download | markdown-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 'src/construct/list.rs')
-rw-r--r-- | src/construct/list.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/construct/list.rs b/src/construct/list.rs index 028e283..1da1f4e 100644 --- a/src/construct/list.rs +++ b/src/construct/list.rs @@ -25,12 +25,12 @@ //! //! ## Tokens //! -//! * [`ListItem`][Token::ListItem] -//! * [`ListItemMarker`][Token::ListItemMarker] -//! * [`ListItemPrefix`][Token::ListItemPrefix] -//! * [`ListItemValue`][Token::ListItemValue] -//! * [`ListOrdered`][Token::ListOrdered] -//! * [`ListUnordered`][Token::ListUnordered] +//! * [`ListItem`][Name::ListItem] +//! * [`ListItemMarker`][Name::ListItemMarker] +//! * [`ListItemPrefix`][Name::ListItemPrefix] +//! * [`ListItemValue`][Name::ListItemValue] +//! * [`ListOrdered`][Name::ListOrdered] +//! * [`ListUnordered`][Name::ListUnordered] //! //! ## References //! |