@ -349,8 +348,8 @@ function htmlFormatMsg(msg) {
@@ -349,8 +348,8 @@ function htmlFormatMsg(msg) {
returni;
}
functionmarkout(msg,chr,tag){
if($.Options.postsMarkout.val==='ignore')
functionmarkout(msg,markoutOpt,chr,tag){
if(markoutOpt==='ignore')
returnmsg;
functionisWhiteSpacesBetween(i,j){
@ -516,7 +515,7 @@ function htmlFormatMsg(msg) {
@@ -516,7 +515,7 @@ function htmlFormatMsg(msg) {
}
// changing the string
if(chr==='`'&&$.Options.postsMarkout.val==='apply'){// if $.Options.postsMarkout.val === 'clear' then ` does not escapes anythyng so it needs to be handled like other tags
if(chr==='`'&&markoutOpt==='apply'){// if markoutOpt === 'clear' then ` does not escape anythyng so it needs to be handled like other tags
for(i=0;i<p.length;i++){
if(p[i].a>-1){
if(p[i].t===-1||(p[i].t===0&&p[i].a>i)){
@ -540,10 +539,10 @@ function htmlFormatMsg(msg) {
@@ -540,10 +539,10 @@ function htmlFormatMsg(msg) {
}
}
}else{
if($.Options.postsMarkout.val==='apply'){
if(markoutOpt==='apply'){
t='</'+tag+'>';
tag='<'+tag+'>';
}else{// $.Options.postsMarkout.val === 'clear' so we're clearing markup
}else{// markoutOpt === 'clear' so we're clearing markup
t='';
tag='';
}
@ -611,6 +610,11 @@ function htmlFormatMsg(msg) {
@@ -611,6 +610,11 @@ function htmlFormatMsg(msg) {