forked from FoundKeyGang/FoundKey
Update note-mixin.ts
This commit is contained in:
parent
5e54751bd4
commit
02b07c1b5b
1 changed files with 1 additions and 0 deletions
|
@ -78,6 +78,7 @@ export default (opts: Opts = {}) => ({
|
|||
urls(): string[] {
|
||||
if (this.appearNote.text) {
|
||||
const ast = parse(this.appearNote.text);
|
||||
// TODO: 再帰的にURL要素がないか調べる
|
||||
return unique(ast
|
||||
.filter(t => ((t.name == 'url' || t.name == 'link') && t.props.url && !t.silent))
|
||||
.map(t => t.props.url));
|
||||
|
|
Loading…
Reference in a new issue