Markup collision with underscores in link texts

Example

http://media.ccc.de/browse/congress/2014/31c3_-_6373_-_en_-_saal_6_-_201412291600_-_the_only_thing_we_know_about_cyberspace_is_that_its_640x480_-_olia_lialina.html

Is it possible to avoid emphasis for such case without direct autolink markup?

Formaly, spec works as expected, but such link texts happens quite often (space replaced with underscores).

Ticket in markdown-it https://github.com/markdown-it/markdown-it/issues/38.

1 Like

Could a solution be that ASCII symbols (with the exception of _ and *) are added to the exception of ASCII alphanumeric characters that disallow _ or __ being considered as opener or closer? In your example it would be - that would prevent the emphasis.

Probably, - can be added to alphanumeric exclusions, but i donā€™t know is it safe or not.

Adding [a-z] to any rules is bad idea in general, because will fail with other languages.

I think that the origin of the current [a-z0-9] rule is because _ is often used in member names from code. Almost always they will be ASCII, not unicode. But since the rule is there, most people would assume that a_a_a and ā_ā_ā would work the same so it could perhaps changed to any non-whitespaceā€¦

Babelmark2 - actually CommonMark ir the minority in this aspect - most of the others result in either emphasis for both or none for both.

[a-z0-9] also covers english words in text. Probably, it will be more simple to remove it at all, and tune negative condition like [punctuation + scopes + whitespaces].

Looks like goal was to define ā€œword boundsā€ with cheats. Thatā€™s, not a problem in normal regegp engines, but pain in JS.

@Knagisā€™s solution would work for this case, but there would be other bare URLs containing underscores for which this problem would arise again. [EDIT: A further problem is that the solution would be overly restrictive: I think we want to allow people to do things like _word_---blah blah and _foo_-bar.]

This is a tough one. It does show one problem with the idea that bare URLs should be linkified after parsing (not in the parser itself). Probably those who want to linkify bare URLs should insert the linkifying routine into the parser to avoid these problemsā€”though there would, I imagine, be a significant performance cost. (Thatā€™s what cheapskate does, and you can see that it renders this nicely on BabelMark2.

I donā€™t see a good solution; Iā€™m tempted to say that users who want URLs with underscores will just have to put them in <...>.

1 Like

+++ Kārlis Gaņģis [Jan 18 15 15:01 ]:

I think that the origin of the current [a-z0-9] rule is because _ is often used in member names from code. Almost always they will be ASCII, not unicode. But since the rule is there, most people would assume that a_a_a and ā_ā_ā would work the same so it could perhaps changed to any non-whitespaceā€¦

Yes, the intent was to avoid capturing underscores in code identifiers as emphasis, since thatā€™s the case I was aware of that was prompting people to complain.

I hadnā€™t considered this URL case.

Given the new rules for emphasis, I wonder if it would make sense to simplify the rules for _ emphasis thus:

instead of

A single _ character can open emphasis iff it is part of a left-flanking delimiter run and is not preceded by an ASCII alphanumeric character.

we could have:

A single _ character can open emphasis iff it is part of a left-flanking delimiter run and not part of a right-flanking delimiter run.

and so on.

Weā€™re already doing the checks for left- and right-flankingness, so this would not add any complexity to the code; it would even simplify it.

[EDIT: Just to clarify, this suggestion would not prevent emphasis in the original URL example. It just seemed independently preferable to singling out ASCII alphanumerics.]

[UPDATE: I have now made this change.]

1 Like

@jgm, need your advice. Iā€™ve tried to detect links with schemas on inline phase, but got another collision. Such links eat tailing markup from pairs:

  • _http://foo.com/_
  • *http://foo.com/*
  • other pairs from extentions (^, ~, ~~, ==, ++)

Any ideas how to solve such conflict? Looks like it would be more effective to disable emphasis on this pattern inside of text: _-_

@vitaly, Iā€™m not quite sure I understand your question. But, as Iā€™ve said before, the biggest problem with linkifying bare URLs is figuring out what final punctuation is part of the link and what is not. You can introduce heuristics for this, but youā€™ll never cover all cases. This is why I prefer not to linkify bare URLs.

Likification logic is ok. Problem is with emphasis.

As you said, _ has additional restrictions, to avoid false_positives_inside_of_words. Reason is clear. I think, here can be one more exclusion - skip _-_ inside of words. Because this pattern can happen in human-friendly links, generated from article titles:

http://media.ccc.de/browse/congress/2014/31c3_-_6373_-_en_-_saal_6_-_201412291600_-_the_only_thing_we_know_about_cyberspace_is_that_its_640x480_-_olia_lialina.html

That looks more safe, than setting high priority to likifier and cheating with link tails.

I donā€™t insist, that this should be in spec. Only ask your opinion - do you see problems with such logic? At first glance, i canā€™t find cases, when user need emphasis for 2 words with dash between.

Seems to me that the best approach would be to scan for links as a unit rather than hoping nothing inside the link will be interpreted as Markdown.

Anyway, I can imagine cases where youā€™d want underline emphasis next to a hyphen. (Especially when we have multiple hyphens, an ASCII em or en dash, but even with single hyphens.)

I tried this approach hear. Problem is, that we donā€™t know where to stop, and linkifier eats markdown markup on tail. Parser can have extentions, adding ++, == etc to existing _, __, *, **. Much more possibilities for mistake.

Could you provide examples, which become broken if i disable _-_ inside of words?

+++ vitaly [Mar 06 15 18:59 ]:

I tried this approach hear. Problem is, that we donā€™t know where to stop, and linkifier eats markdown markup on tail. Parser can have extentions, adding ++, == etc to existing _, __, *, **. Much more possibilities for mistake.

Given that URLs can contain all kinds of symbols that have meaning in
Markdown, including square brackets, parentheses, backslashes, and
asterisks, it just seems crazy to allow the inside of a URL to be parsed
as Markdown and then linkify afterwards. Disabling _ emphasis next to
a hyphen would be an ad hoc fix for just one possible issue of this
kind.

Could you provide examples, which become broken if i disable _-_ inside of words?

Spanish has two words that translate the English word
_that_---_aquel_ and _eso_---so we need to see how they
differ.

I looked up every word from _A_-_Z_.

See Plato, _Timaeus_, 17_a_-_d_.

I can think of lots of cases where people might naturally do this.

Iā€™ve been bitten by this for links referencing Python source code, e.g.:

http://example.com/__init__.py

Several implementations produce the intended link here (babelmark), although http://example.com/__init__ seems to be harder to handle (babelmark).

Interestingly, GitHubā€™s commonmark dialect does not seem to suffer from this.

Their formal specification briefly mentions underscores in its autolink section:

Autolinks can also be constructed without requiring the use of < and to > to delimit them, although they will be recognized under a smaller set of circumstances. All such recognized autolinks can only come at the beginning of a line, after whitespace, or any of the delimiting characters *, _, ~, and (.

This forbids things like `http://example.com` becoming a link.

After a valid domain, zero or more non-space non-< characters may follow:

This seems to imply _ is not treated specially.

An extended email autolink will be recognised when an email address is recognised within any text node. Email addresses are recognised according to the following rules: [ā€¦] ., -, and _ can occur on both sides of the @, but only .`` may occur at the end of the email address, in which case it will not be considered part of the address:

Email autolinks also get a specific mention regarding underscores.