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
Not sure if this is in scope, but markdown normally allows HTML tags. You can write something like this:
This is **markdown'd**. But you can also <span color="red">do stuff manually</span>.
The span should be copied verbatim to the HTML output. In this implementation, though, all HTML tags are escaped (< becomes <).
<
<
The text was updated successfully, but these errors were encountered:
This is supported in the block parser, but not inline: https://github.com/dpeek/dart-markdown/blob/master/lib/src/block_parser.dart#L325
I'll take a look at it.
Sorry, something went wrong.
@dpeek Since dart is primarily for the web, we should add a safeHtml option to this library.
safeHtml
Successfully merging a pull request may close this issue.
Not sure if this is in scope, but markdown normally allows HTML tags. You can write something like this:
The span should be copied verbatim to the HTML output. In this implementation, though, all HTML tags are escaped (
<
becomes<
).The text was updated successfully, but these errors were encountered: