When attempting to strip a portion of a line using inline tagging, the newline is also stripped. This happens even if trailing white space is added at the end of the line
Example:
const var1 = "123"
const var2 /*begin_strip_tag*/ = "This is a string I want removed" /*end_strip_tag*/
will result in:
const var1 = "123"const var2
I would expect:
const var1 = "123"
const var2