We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AutoLink
HardLineBreak
When I run blackfriday this way
b := blackfriday.Run([]byte(in))
which implicitly enables common extensions, AutoLink is also working and links such as
https://site.com
rendered as <a href=...>https://site.com</a>. However when blackfriday is run with HardLineBreak and it's supposed that common extensions also enabled
<a href=...>https://site.com</a>
b := blackfriday.Run([]byte(in), blackfriday.WithExtensions(blackfriday.HardLineBreak))
AutoLink doesn't work anymore and links are not rendered.
I didn't check whether other common extensions stop working or not.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I run blackfriday this way
which implicitly enables common extensions,
AutoLink
is also working and links such asrendered as
<a href=...>https://site.com</a>
.However when blackfriday is run with
HardLineBreak
and it's supposed that common extensions also enabledAutoLink
doesn't work anymore and links are not rendered.I didn't check whether other common extensions stop working or not.
The text was updated successfully, but these errors were encountered: