From e0485409fca79af0b47af15ebdba7a3df5c1d3d2 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 12 Oct 2022 10:44:33 +0200 Subject: Refactor to improve some module docs --- src/construct/character_escape.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/construct/character_escape.rs') diff --git a/src/construct/character_escape.rs b/src/construct/character_escape.rs index 67946a0..471fc8c 100644 --- a/src/construct/character_escape.rs +++ b/src/construct/character_escape.rs @@ -11,11 +11,10 @@ //! //! Like much of markdown, there are no “invalid” character escapes: just a //! slash, or a slash followed by anything other than an ASCII punctuation -//! character, is exactly that: just a slash. +//! character, is just a slash. //! -//! To escape (almost all) arbitrary characters instead of only ASCII -//! punctuation, use a [character reference][character_reference] instead -//! (as in, `&`, `{`, or say ` `). +//! To escape other characters, use a [character reference][character_reference] +//! instead (as in, `&`, `{`, or say ` `). //! //! It is also possible to escape a line ending in text with a similar //! construct: a [hard break (escape)][hard_break_escape] is a backslash followed -- cgit