sciyen / Phabricator-Editor-Plugin

This is a simple plugin that adds a button to the Phabricator Remarkup editor that allows you to edit the raw Remarkup text in full screen mode.
0 stars 0 forks source link

The inline code fails #5

Closed sciyen closed 5 months ago

sciyen commented 5 months ago

This is caused by a bug in the converter. The regex

content = re.sub(r'//.*', '', content)

removes the whole line behind //.

But a string like '//' should not be removed.

sciyen commented 5 months ago

This bug is fixed in 6f84753.