missing semicolon
This commit is contained in:
parent
a4283c415a
commit
22f4b3cc7b
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ export default function(html: string): string {
|
||||||
}
|
}
|
||||||
// メンション以外
|
// メンション以外
|
||||||
} else {
|
} else {
|
||||||
text += `[${txt}](${node.attrs.find((x: any) => x.name == 'href').value})`
|
text += `[${txt}](${node.attrs.find((x: any) => x.name == 'href').value})`;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (node.childNodes) {
|
if (node.childNodes) {
|
||||||
|
|
Loading…
Reference in a new issue