treat newlines as whitespace in MD_CharIsSpace

This commit is contained in:
Ryan Fleury
2021-11-28 12:22:50 -07:00
parent 474c4af262
commit 597b44d5a3
+1 -1
View File
@@ -856,7 +856,7 @@ MD_CharIsReservedSymbol(MD_u8 c)
MD_FUNCTION MD_b32
MD_CharIsSpace(MD_u8 c)
{
return c == ' ' || c == '\r' || c == '\t' || c == '\f' || c == '\v';
return c == ' ' || c == '\r' || c == '\t' || c == '\f' || c == '\v' || c == '\n';
}
MD_FUNCTION MD_u8