From b4a16dd5b6fac8532050c8b0f0fbbd6ff4880d4b Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Fri, 15 Jul 2022 11:52:40 +0200 Subject: Fix link --- src/construct/thematic_break.rs | 7 +++---- 1 file 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 -//! -//! use super::partial_space_or_tab::{space_or_tab, space_or_tab_min_max}; use crate::constant::{TAB_SIZE, THEMATIC_BREAK_MARKER_COUNT_MIN}; -- cgit