-
Notifications
You must be signed in to change notification settings - Fork 431
New issue
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
fix: 修改语法 hook,完善Cherry Commonmark语法解析 #299
Open
stillcalm
wants to merge
3
commits into
Tencent:dev
Choose a base branch
from
stillcalm:dev
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lyngai
requested changes
Aug 12, 2022
这个pr还能要吗,提交的时候不知道 force-pushed 的危害,然后就提交了。 |
// auto.js passed 1
{
"markdown": "<MAILTO:[email protected]>\n",
"html": "<p><a href=\"MAILTO:[email protected]\">MAILTO:[email protected]</a></p>\n",
"example": 596,
"start_line": 8792,
"end_line": 8796,
"section": "Autolinks"
}
// emphasis.js passed 1
{
"markdown": "*foo *bar**\n",
"html": "<p><em>foo <em>bar</em></em></p>\n",
"example": 408,
"start_line": 6858,
"end_line": 6862,
"section": "Emphasis and strong emphasis"
}
// link.js passed 9,fialed 1(Example 517)
{
"markdown": "[](./target.md)\n",
"html": "<p><a href=\"./target.md\"></a></p>\n",
"example": 483,
"start_line": 7544,
"end_line": 7548,
"section": "Links"
},
{
"markdown": "[link]()\n",
"html": "<p><a href=\"\">link</a></p>\n",
"example": 484,
"start_line": 7551,
"end_line": 7555,
"section": "Links"
},
{
"markdown": "[]()\n",
"html": "<p><a href=\"\"></a></p>\n",
"example": 486,
"start_line": 7565,
"end_line": 7569,
"section": "Links"
},
{
"markdown": "[link](\\(foo\\))\n",
"html": "<p><a href=\"(foo)\">link</a></p>\n",
"example": 494,
"start_line": 7637,
"end_line": 7641,
"section": "Links"
},
{
"markdown": "[link](foo(and(bar)))\n",
"html": "<p><a href=\"foo(and(bar))\">link</a></p>\n",
"example": 495,
"start_line": 7646,
"end_line": 7650,
"section": "Links"
},
{
"markdown": "[link](foo\\(and\\(bar\\))\n",
"html": "<p><a href=\"foo(and(bar)\">link</a></p>\n",
"example": 497,
"start_line": 7662,
"end_line": 7666,
"section": "Links"
},
{
"markdown": "[link](foo\\)\\:)\n",
"html": "<p><a href=\"foo):\">link</a></p>\n",
"example": 499,
"start_line": 7679,
"end_line": 7683,
"section": "Links"
},
{
"markdown": "[link](/url \"title\")\n[link](/url 'title')\n[link](/url (title))\n",
"html": "<p><a href=\"/url\" title=\"title\">link</a>\n<a href=\"/url\" title=\"title\">link</a>\n<a href=\"/url\" title=\"title\">link</a></p>\n",
"example": 504,
"start_line": 7740,
"end_line": 7748,
"section": "Links"
},
{
"markdown": "[link] (/uri)\n",
"html": "<p>[link] (/uri)</p>\n",
"example": 510,
"start_line": 7819,
"end_line": 7823,
"section": "Links"
},
{
"markdown": "[foo [bar](/uri)](/uri)\n",
"html": "<p>[foo <a href=\"/uri\">bar</a>](/uri)</p>\n",
"example": 517,
"start_line": 7875,
"end_line": 7879,
"section": "Links"
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
236 通过修改语法 hook,完善Cherry Commonmark,并增加通过10个单测用例(通过 11 个测试,失败 1 个),
(Passed Example 408、483、484、486、494、495、497、499、504、510、596,Failed Example 517)