You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Linkify notices a regex match, it "creates" a hyperlink out of it. This works in most cases, but it should not be the case inside of monospace text (i.e. single-backtick and triple-backticks).
This uses the following Linkify config: g\/([a-zA-Z0-9#_.-]+) -> http://g/$1
Notice the regular looking links (like https://google.com) do not show up as hyperlink (this is intentional), but the links that Linkify looks for do show up as hyperlink (they should not).
The text was updated successfully, but these errors were encountered:
When Linkify notices a regex match, it "creates" a hyperlink out of it. This works in most cases, but it should not be the case inside of monospace text (i.e. single-backtick and triple-backticks).
Example Markdown
This uses the following Linkify config:
g\/([a-zA-Z0-9#_.-]+)
->http://g/$1
Notice the regular looking links (like https://google.com) do not show up as hyperlink (this is intentional), but the links that Linkify looks for do show up as hyperlink (they should not).
The text was updated successfully, but these errors were encountered: