chore: filter unnecessary tag
This commit is contained in:
parent
f1671c338b
commit
eb29100679
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ module.exports = async function () {
|
|||
return {
|
||||
title: link['description'],
|
||||
url: link['href'],
|
||||
tags: [...new Set(link['tags'].split(' '))],
|
||||
tags: [...new Set(link['tags'].split(' ').filter((tag) => tag.toLowerCase() !== 'share'))],
|
||||
date: link['time'],
|
||||
description: link['extended'],
|
||||
}
|
||||
|
|
Reference in a new issue