View file phpBB3/vendor/s9e/text-formatter/src/Plugins/Litedown/Parser/Passes/ForcedLineBreaks.js

File size: 190B
function parse()
{
	var pos = text.indexOf("  \n");
	while (pos > 0)
	{
		addBrTag(pos + 2).cascadeInvalidationTo(
			addVerbatim(pos + 2, 1)
		);
		pos = text.indexOf("  \n", pos + 3);
	}
}