diff options
Diffstat (limited to 'src/to_mdast.rs')
-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; } } |