mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
do not leave spare carriage-return characters in node comments
This commit is contained in:
+1
-1
@@ -1131,7 +1131,7 @@ MD_Parse_LexNext(MD_ParseCtx *ctx)
|
||||
|
||||
at += 2;
|
||||
token.kind = MD_TokenKind_Comment;
|
||||
MD_TokenizerScan(*at != '\n');
|
||||
MD_TokenizerScan(*at != '\n' && *at != '\r');
|
||||
}
|
||||
else if (at[1] == '*')
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user