chore: consolidate filters

This commit is contained in:
Cory Dransfeldt 2024-06-02 20:01:07 -07:00
parent 5c54e8d409
commit 36dbca3e3b
No known key found for this signature in database
4 changed files with 8 additions and 10 deletions

View file

@ -3,10 +3,11 @@ import { URL } from 'url'
import slugify from 'slugify'
import markdownIt from 'markdown-it'
import sanitizeHtml from 'sanitize-html';
import { shuffleArray, sanitizeMediaString } from '../utilities/index.js'
const BASE_URL = 'https://coryd.dev'
const md = markdownIt({ html: true, linkify: true })
export default {
// general
@ -23,6 +24,9 @@ export default {
formatNumber: (number) => number.toLocaleString('en-US'),
shuffleArray,
// markdown
markdown: (content) => md.render(content),
// navigation
isLinkActive: (category, page) => {
const normalizedPage = page.includes('.html') ? page.replace('.html', '/') : page
@ -112,7 +116,6 @@ export default {
entries.forEach((entry) => {
const dateKey = Object.keys(entry).find((key) => key.includes('date'))
const date = new Date(entry[dateKey])
const md = markdownIt({ html: true, linkify: true })
let excerpt = ''
let url = ''
let title = entry.title