mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
Fix bug
This commit is contained in:
parent
9c972b6bd6
commit
02a3300f25
@ -221,7 +221,9 @@ const elements = [
|
||||
// label
|
||||
code => {
|
||||
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 {
|
||||
html: `<span class="label">${label}</span>`,
|
||||
next: label.length
|
||||
|
Loading…
Reference in New Issue
Block a user