imagejan
(Jan Eglinger)
2018 年2 月 11 日 15:32
1
I noticed that links containing underscores (_
) don’t get oneboxed correctly under certain conditions, because the underscores get interpreted as formatting directives.
Consider this link:
https://github.com/arve0/fijibin/blob/a3d2e983cb9ff2bcbb56a800084bc3b35cb9292f/fijibin/__init__.py#L23
Trying to onebox:
https://github.com/arve0/fijibin/blob/a3d2e983cb9ff2bcbb56a800084bc3b35cb9292f/fijibin/ init .py#L23
This can be worked around using %5F
to replace the first underscore:
https://github.com/arve0/fijibin/blob/a3d2e983cb9ff2bcbb56a800084bc3b35cb9292f/fijibin/%5F_init__.py#L23
https://github.com/arve0/fijibin/blob/a3d2e983cb9ff2bcbb56a800084bc3b35cb9292f/fijibin/__init__.py#L23
simply put brackets around it like so
<https://github.com/arve0/fijibin/blob/a3d2e983cb9ff2bcbb56a800084bc3b35cb9292f/fijibin/__init__.py#L23>
Not a bug, auto linking cannot be expected to work in all scenarios. See http://commonmark.org/help for the markdown spec on this
7 个赞
notriddle
(Michael Howell)
2018 年2 月 11 日 20:52
3
That doesn’t get oneboxed, either (the percent encoding method seems like the right way to work around this).
2 个赞
imagejan
(Jan Eglinger)
2018 年2 月 12 日 16:34
4
I agree with @notriddle : adding the brackets (<>
) will keep the link intact, but actually prevents oneboxing in my trials.
1 个赞
sam
(Sam Saffron)
2018 年2 月 13 日 06:11
5
I am half open to allowing oneboxing (but not mini oneboxing) it is quite an edge case though. The bug is in linkify: GitHub - markdown-it/linkify-it: Links recognition library with full unicode support so may be worth mentioning in an issue there.
5 个赞