Fixes #426
parent
7c825348b2
commit
4a88b5636e
|
@ -27,7 +27,7 @@ export function mdExtensionSyntaxConfig({
|
||||||
if (!firstCharCodes.includes(next)) {
|
if (!firstCharCodes.includes(next)) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
let match = regex.exec(cx.slice(pos, cx.end));
|
const match = regex.exec(cx.slice(pos, cx.end));
|
||||||
if (!match) {
|
if (!match) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -223,7 +223,7 @@
|
||||||
border: 1px solid #0120416b;
|
border: 1px solid #0120416b;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
padding: 0 3px;
|
padding: 0 3px;
|
||||||
margin: 0 -3px;
|
margin: 0 1px 0 0;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue