Closed sciyen closed 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.
'//'
This bug is fixed in 6f84753.
This is caused by a bug in the converter. The regex
removes the whole line behind
//
.But a string like
'//'
should not be removed.