diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 11:24:06 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 11:24:06 +0200 |
commit | 6e20c3e79d4270fafb13a63af51eaffaa45c11e1 (patch) | |
tree | 3fb3952e00c5e111f30a73d7c25b0879e5a1d052 /src/construct/thematic_break.rs | |
parent | 3a4de4b3a89e7171f8e3e0b6bf02fcd2d5c5f748 (diff) | |
download | markdown-rs-6e20c3e79d4270fafb13a63af51eaffaa45c11e1.tar.gz markdown-rs-6e20c3e79d4270fafb13a63af51eaffaa45c11e1.tar.bz2 markdown-rs-6e20c3e79d4270fafb13a63af51eaffaa45c11e1.zip |
Refactor to rename list construct to list item
Diffstat (limited to 'src/construct/thematic_break.rs')
-rw-r--r-- | src/construct/thematic_break.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/construct/thematic_break.rs b/src/construct/thematic_break.rs index f493b96..1b581ea 100644 --- a/src/construct/thematic_break.rs +++ b/src/construct/thematic_break.rs @@ -20,7 +20,7 @@ //! As using more than three markers has no effect other than wasting space, //! it is recommended to use exactly three markers. //! Thematic breaks formed with asterisks or dashes can interfere with -//! [list][]s if there is whitespace between them: `* * *` and `- - -`. +//! [list][list-item]s if there is whitespace between them: `* * *` and `- - -`. //! For these reasons, it is recommend to not use spaces or tabs between the //! markers. //! Thematic breaks formed with dashes (without whitespace) can also form @@ -45,7 +45,7 @@ //! //! [flow]: crate::content::flow //! [heading_setext]: crate::construct::heading_setext -//! [list]: crate::construct::list +//! [list-item]: crate::construct::list_item //! [html]: https://html.spec.whatwg.org/multipage/grouping-content.html#the-hr-element use super::partial_space_or_tab::{space_or_tab, space_or_tab_min_max}; |