fixes 2) in #33, tags can contain and end with . and -
This commit is contained in:
parent
a4661e15eb
commit
b3200f993a
File diff suppressed because one or more lines are too long
|
@ -2952,15 +2952,15 @@ $('body').on('keyup paste input', 'div.queet-box-syntax', function() {
|
||||||
}
|
}
|
||||||
// long enough match, create a mention span
|
// long enough match, create a mention span
|
||||||
else {
|
else {
|
||||||
// don't include ending char, if any of these
|
// don't include ending char, if any of these (but tags can contain and end with . and -)
|
||||||
if(currentMatch[0].slice(-1) == '<'
|
if(currentMatch[0].slice(-1) == '<'
|
||||||
|| currentMatch[0].slice(-1) == '&'
|
|| currentMatch[0].slice(-1) == '&'
|
||||||
|| currentMatch[0].slice(-1) == '?'
|
|| currentMatch[0].slice(-1) == '?'
|
||||||
|| currentMatch[0].slice(-1) == '!'
|
|| currentMatch[0].slice(-1) == '!'
|
||||||
|| currentMatch[0].slice(-1) == ' '
|
|| currentMatch[0].slice(-1) == ' '
|
||||||
|| currentMatch[0].slice(-1) == '-'
|
|| (currentMatch[0].slice(-1) == '-' && k != 'tag')
|
||||||
|| currentMatch[0].slice(-1) == ':'
|
|| currentMatch[0].slice(-1) == ':'
|
||||||
|| currentMatch[0].slice(-1) == '.'
|
|| (currentMatch[0].slice(-1) == '.' && k != 'tag')
|
||||||
|| currentMatch[0].slice(-1) == ','
|
|| currentMatch[0].slice(-1) == ','
|
||||||
|| currentMatch[0].slice(-1) == ')'
|
|| currentMatch[0].slice(-1) == ')'
|
||||||
|| currentMatch[0].slice(-1) == '\'') {
|
|| currentMatch[0].slice(-1) == '\'') {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user