mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-03-12 05:21:18 +00:00
fix of post formatting to handle sequence of markdown chars correctly
This commit is contained in:
parent
4eb9ab9213
commit
c6c4531a11
@ -259,7 +259,10 @@ function htmlFormatMsg(msg, mentions) {
|
||||
if (stopCharsMarkDown.indexOf(str[i - 1]) > -1) {
|
||||
l = 1;
|
||||
for (t = i - 2; t > -1; t--) {
|
||||
if (stopCharsMarkDown.indexOf(str[t]) === -1) {
|
||||
if (str[t] === chr) {
|
||||
l = -1;
|
||||
break;
|
||||
} else if (stopCharsMarkDown.indexOf(str[t]) === -1) {
|
||||
l = whiteSpacesMarkDown.indexOf(str[t]);
|
||||
break;
|
||||
}
|
||||
@ -269,7 +272,10 @@ function htmlFormatMsg(msg, mentions) {
|
||||
if (stopCharsMarkDown.indexOf(str[j]) > -1) {
|
||||
r = 1;
|
||||
for (t = j + 1; t < str.length; t++) {
|
||||
if (stopCharsMarkDown.indexOf(str[t]) === -1) {
|
||||
if (str[t] === chr) {
|
||||
r = -1;
|
||||
break;
|
||||
} else if (stopCharsMarkDown.indexOf(str[t]) === -1) {
|
||||
r = whiteSpacesMarkDown.indexOf(str[t]);
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user