chore: masto username filter
This commit is contained in:
parent
f24c985757
commit
5a7beeae3f
3 changed files with 9 additions and 3 deletions
|
@ -78,6 +78,12 @@ export default {
|
|||
// links
|
||||
absoluteUrl: (url) => (new URL(url, BASE_URL)).toString(),
|
||||
|
||||
// mastodon
|
||||
mastoUsername: (url) => {
|
||||
const url = new URL(post.author.mastodon)
|
||||
return `${url.pathname.replace('/', '')}@${url.host}`
|
||||
},
|
||||
|
||||
// feeds
|
||||
normalizeEntries: (entries) => {
|
||||
const posts = []
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "19.9.17",
|
||||
"version": "19.9.18",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "coryd.dev",
|
||||
"version": "19.9.17",
|
||||
"version": "19.9.18",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cdransf/api-text": "^1.4.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "19.9.17",
|
||||
"version": "19.9.18",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
Reference in a new issue