2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-04 08:47:37 +08:00

FIX: capital bbcode tags were broken

This commit is contained in:
Arpit Jalan 2018-03-04 22:10:54 +05:30
parent a15b2fdeca
commit 322618fc34

View file

@ -51,6 +51,8 @@ export function parseBBCodeTag(src, start, max, multiline) {
return;
}
tag = tag.toLowerCase();
return {tag, length: tag.length+3, closing: true};
}
return;