Fix bug
This commit is contained in:
parent
9c972b6bd6
commit
02a3300f25
|
@ -221,7 +221,9 @@ const elements = [
|
||||||
// label
|
// label
|
||||||
code => {
|
code => {
|
||||||
if (code[0] != '@') return null;
|
if (code[0] != '@') return null;
|
||||||
const label = code.match(/^@([a-zA-Z_-]+?)\n/)[0];
|
const match = code.match(/^@([a-zA-Z_-]+?)\n/);
|
||||||
|
if (!match) return null;
|
||||||
|
const label = match[0];
|
||||||
return {
|
return {
|
||||||
html: `<span class="label">${label}</span>`,
|
html: `<span class="label">${label}</span>`,
|
||||||
next: label.length
|
next: label.length
|
||||||
|
|
Loading…
Reference in New Issue