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.
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
Consider this code:
import 'package:markdown/markdown.dart' as md; main() { String input = 'Hello [WORLD_TWO_UNDERSCORES] but this works [HELLO_WORLD]'; md.Node _linkResolver(String name) { return new md.Text('XX $name XX'); } print(md.markdownToHtml(input, linkResolver: _linkResolver)); }
Output:
<p>Hello [WORLD_TWO_UNDERSCORES] but this works XX HELLO_WORLD XX</p>
Expected:
<p>Hello XX WORLD_TWO_UNDERSCORES XX but this works XX HELLO_WORLD XX</p>
FWIW, If I remove new TagSyntax(r'_', tag: 'em'), from the top of inline_parser.dart, it works.
new TagSyntax(r'_', tag: 'em'),
The text was updated successfully, but these errors were encountered:
cc @keertip for FYI
Sorry, something went wrong.
dart-archive/markdown@dcf784e
Much appreciated! Thanks for the quick turnaround.
Allow resolving links that contain inline syntax.
13133ca
Fixes dart-lang/markdown#42. [email protected] Review URL: https://codereview.chromium.org//1274753003 .
munificent
No branches or pull requests
Consider this code:
Output:
<p>Hello [WORLD_TWO_UNDERSCORES] but this works XX HELLO_WORLD XX</p>
Expected:
<p>Hello XX WORLD_TWO_UNDERSCORES XX but this works XX HELLO_WORLD XX</p>
FWIW, If I remove
new TagSyntax(r'_', tag: 'em'),
from the top of inline_parser.dart, it works.The text was updated successfully, but these errors were encountered: