-
Notifications
You must be signed in to change notification settings - Fork 204
Refactor AutolinkExtensionSyntax #471
Refactor AutolinkExtensionSyntax #471
Conversation
static final Config gfmConfig = Config._( | ||
'gfm', | ||
'https://github.github.com/gfm/', | ||
ExtensionSet.gitHubFlavored, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ExtensionSet.gitHubFlavored
does not work out here. Because AutolinkExtensionSyntax
and AutolinkSyntax
conflict to each other.
For example:
https://github.github.com/gfm/#example-620
http://example.com
Without AutolinkExtensionSyntax
, the result is:
<p>http://example.com</p>
With AutolinkExtensionSyntax
, the result is:
<p><a href="http://example.com">http://example.com</a></p>
1abc5b8
to
01e126b
Compare
@srawlins hi, I have created 3 more PRs. I am not sure if I need to ping you each time when I have created a new PR, so it will show up somewhere on your dashboard. 🙂 |
1b7fa9a
to
7e6362c
Compare
Pull Request Test Coverage Report for Build 3326057450Warning: This coverage report may be inaccurate.This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Details
💛 - Coveralls |
7e6362c
to
eea7e9f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! One question
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
* Refactor AutolinkExtensionSyntax Fix https://github.com/dart-lang/markdown/issues/470 * Improve readability * optimise a bit * Fix some requests from reveiw * Update gfm_stats.txt * An optimisation.
To improve the readability and test coverage.
Fix: dart-lang/tools#1315