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
|
// links
|
||||||
absoluteUrl: (url) => (new URL(url, BASE_URL)).toString(),
|
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
|
// feeds
|
||||||
normalizeEntries: (entries) => {
|
normalizeEntries: (entries) => {
|
||||||
const posts = []
|
const posts = []
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.9.17",
|
"version": "19.9.18",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.9.17",
|
"version": "19.9.18",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.9.17",
|
"version": "19.9.18",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue