diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-13 18:13:08 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-13 18:13:08 +0200 |
commit | ef77260efa1122cba42eb97dcadb771ba354276a (patch) | |
tree | 1a4cb084f3ffc710304ab3768bcd3fa988669302 /src/to_mdast.rs | |
parent | e0ca78397ea34cde06ab8257a8481afc812d344f (diff) | |
download | markdown-rs-ef77260efa1122cba42eb97dcadb771ba354276a.tar.gz markdown-rs-ef77260efa1122cba42eb97dcadb771ba354276a.tar.bz2 markdown-rs-ef77260efa1122cba42eb97dcadb771ba354276a.zip |
Fix cr, crlf in code (fenced) for mdast
Diffstat (limited to '')
-rw-r--r-- | src/to_mdast.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/to_mdast.rs b/src/to_mdast.rs index fe5bd82..39f6bc5 100644 --- a/src/to_mdast.rs +++ b/src/to_mdast.rs @@ -1721,11 +1721,11 @@ fn trim_eol(value: String, at_start: bool, at_end: bool) -> String { if at_end && end > start { if bytes[end - 1] == b'\n' { end -= 1; - } else if bytes[end - 1] == b'\r' { - end -= 1; - if end > start && bytes[end - 1] == b'\n' { + if end > start && bytes[end - 1] == b'\r' { end -= 1; } + } else if bytes[end - 1] == b'\r' { + end -= 1; } } |