diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-12 10:44:33 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-12 10:44:33 +0200 |
commit | e0485409fca79af0b47af15ebdba7a3df5c1d3d2 (patch) | |
tree | 1bc44cf3c11df4e99f555e4efe64facfe786c4c0 /src/construct/character_escape.rs | |
parent | 4d6bd4779c082fef900b760e014959a30b16051b (diff) | |
download | markdown-rs-e0485409fca79af0b47af15ebdba7a3df5c1d3d2.tar.gz markdown-rs-e0485409fca79af0b47af15ebdba7a3df5c1d3d2.tar.bz2 markdown-rs-e0485409fca79af0b47af15ebdba7a3df5c1d3d2.zip |
Refactor to improve some module docs
Diffstat (limited to 'src/construct/character_escape.rs')
-rw-r--r-- | src/construct/character_escape.rs | 7 |
1 files changed, 3 insertions, 4 deletions
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 |