Fix syuilo#5729 (#5732)
This commit is contained in:
parent
75cb7f8b36
commit
5a950cf991
@ -36,7 +36,8 @@ export function fromHtml(html: string): string {
|
||||
const txt = getText(node);
|
||||
const rel = node.attrs.find((x: any) => x.name == 'rel');
|
||||
const href = node.attrs.find((x: any) => x.name == 'href');
|
||||
const isHashtag = rel && rel.value.match('tag') !== null;
|
||||
const _class = node.attrs.find((x: any) => x.name == 'class');
|
||||
const isHashtag = rel?.value?.match('tag') || _class?.value?.match('hashtag');
|
||||
|
||||
// ハッシュタグ / hrefがない / txtがURL
|
||||
if (isHashtag || !href || href.value == txt) {
|
||||
|
Loading…
Reference in New Issue
Block a user