diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-15 11:52:40 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-15 11:52:40 +0200 |
commit | b4a16dd5b6fac8532050c8b0f0fbbd6ff4880d4b (patch) | |
tree | 642e81d1386e40a741b1b15edaf6f45f163a687f /src/construct/thematic_break.rs | |
parent | c51784f08024e9dc3dc940a2a6b0db171f56aaa7 (diff) | |
download | markdown-rs-b4a16dd5b6fac8532050c8b0f0fbbd6ff4880d4b.tar.gz markdown-rs-b4a16dd5b6fac8532050c8b0f0fbbd6ff4880d4b.tar.bz2 markdown-rs-b4a16dd5b6fac8532050c8b0f0fbbd6ff4880d4b.zip |
Fix link
Diffstat (limited to 'src/construct/thematic_break.rs')
-rw-r--r-- | src/construct/thematic_break.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/construct/thematic_break.rs b/src/construct/thematic_break.rs index 4d92f8d..96b328a 100644 --- a/src/construct/thematic_break.rs +++ b/src/construct/thematic_break.rs @@ -19,8 +19,8 @@ //! writing markdown. //! 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 lists -//! in if there is whitespace between them: `* * *` and `- - -`. +//! Thematic breaks formed with asterisks or dashes can interfere with +//! [list][]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,9 +45,8 @@ //! //! [flow]: crate::content::flow //! [heading_setext]: crate::construct::heading_setext +//! [list]: crate::construct::list //! [html]: https://html.spec.whatwg.org/multipage/grouping-content.html#the-hr-element -//! -//! <!-- To do: link `lists` --> use super::partial_space_or_tab::{space_or_tab, space_or_tab_min_max}; use crate::constant::{TAB_SIZE, THEMATIC_BREAK_MARKER_COUNT_MIN}; |