rdoc icon indicating copy to clipboard operation
rdoc copied to clipboard

RDoc escapes <sup> tags

Open cstyles opened this issue 4 years ago • 0 comments

The documenetation for the Regexp class in the standard library uses <sup> which is escaped as you can see here:

https://ruby-doc.org/core-3.0.1/Regexp.html#class-Regexp-label-Capturing

Parentheses can be used for capturing. The text enclosed by the n<sup>th</sup> group of parentheses can be subsequently referred to with n. Within a pattern use the backreference \n; outside of the pattern use MatchData[n].

Can we allow <sup> tags? I believe that, in addition to HTML, some Markdown flavors support <sup> and <sub>. For example, GitHub lets me do this: regular superscript subscript

cstyles avatar Jul 17 '21 22:07 cstyles