We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ad942e commit ad6a190Copy full SHA for ad6a190
1 file changed
commonmark/src/main/java/org/commonmark/internal/InlineParserImpl.java
@@ -40,7 +40,7 @@ public class InlineParserImpl implements InlineParser {
40
"\\((" + ESCAPED_CHAR + "|[^)\\x00])*\\))");
41
42
private static final Pattern LINK_DESTINATION_BRACES = Pattern.compile(
43
- "^(?:[<](?:[^<>\\n\\\\\\x00]" + '|' + ESCAPED_CHAR + '|' + "\\\\)*[>])");
+ "^(?:[<](?:[^<> \\t\\n\\\\\\x00]" + '|' + ESCAPED_CHAR + '|' + "\\\\)*[>])");
44
45
private static final Pattern LINK_DESTINATION = Pattern.compile(
46
"^(?:" + REG_CHAR + "+|" + ESCAPED_CHAR + "|\\\\|" + IN_PARENS_NOSP + ")*");
0 commit comments