fix: highlighting
This commit is contained in:
parent
09cdd5dbdc
commit
ae13df9813
4 changed files with 14 additions and 12 deletions
|
@ -69,6 +69,11 @@ export default async function (eleventyConfig) {
|
|||
eleventyConfig.setLibrary('md', md)
|
||||
|
||||
// filters
|
||||
eleventyConfig.addLiquidFilter('markdown', (content) => {
|
||||
if (!content) return
|
||||
return md.render(content)
|
||||
})
|
||||
|
||||
Object.keys(filters).forEach((filterName) => {
|
||||
eleventyConfig.addLiquidFilter(filterName, filters[filterName])
|
||||
})
|
||||
|
|
|
@ -3,11 +3,10 @@ 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
|
||||
|
@ -24,9 +23,6 @@ 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
|
||||
|
@ -116,6 +112,7 @@ 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
|
||||
|
@ -242,4 +239,4 @@ export default {
|
|||
|
||||
return `${allButLast} and ${last}`
|
||||
}
|
||||
}
|
||||
}
|
10
package-lock.json
generated
10
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "18.6.8",
|
||||
"version": "18.6.9",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "coryd.dev",
|
||||
"version": "18.6.8",
|
||||
"version": "18.6.9",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cdransf/api-text": "^1.4.0",
|
||||
|
@ -829,9 +829,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/caniuse-lite": {
|
||||
"version": "1.0.30001626",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001626.tgz",
|
||||
"integrity": "sha512-JRW7kAH8PFJzoPCJhLSHgDgKg5348hsQ68aqb+slnzuB5QFERv846oA/mRChmlLAOdEDeOkRn3ynb1gSFnjt3w==",
|
||||
"version": "1.0.30001627",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001627.tgz",
|
||||
"integrity": "sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==",
|
||||
"dev": true,
|
||||
"funding": [
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "18.6.8",
|
||||
"version": "18.6.9",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
Reference in a new issue