diff --git a/.eleventy.js b/.eleventy.js
index 5edb4764..21ca6ef7 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -14,91 +14,91 @@ const now = String(Date.now())
require('dotenv-flow').config()
module.exports = function (eleventyConfig) {
- // plugins
- eleventyConfig.addPlugin(syntaxHighlight)
- eleventyConfig.addPlugin(heroIcons)
- eleventyConfig.addPlugin(pluginUnfurl)
- eleventyConfig.addPlugin(pluginFilesMinifier)
+ // plugins
+ eleventyConfig.addPlugin(syntaxHighlight)
+ eleventyConfig.addPlugin(heroIcons)
+ eleventyConfig.addPlugin(pluginUnfurl)
+ eleventyConfig.addPlugin(pluginFilesMinifier)
- // tailwind watches
- eleventyConfig.addWatchTarget('./tailwind.config.js')
- eleventyConfig.addWatchTarget('./tailwind.css')
+ // tailwind watches
+ eleventyConfig.addWatchTarget('./tailwind.config.js')
+ eleventyConfig.addWatchTarget('./tailwind.css')
- // passthrough
- eleventyConfig.addPassthroughCopy('src/assets')
- eleventyConfig.addPassthroughCopy('src/robots.txt')
- eleventyConfig.addPassthroughCopy('src/contribute.json')
+ // passthrough
+ eleventyConfig.addPassthroughCopy('src/assets')
+ eleventyConfig.addPassthroughCopy('src/robots.txt')
+ eleventyConfig.addPassthroughCopy('src/contribute.json')
- // shortcodes
- eleventyConfig.addShortcode('version', () => now)
+ // shortcodes
+ eleventyConfig.addShortcode('version', () => now)
- // filters
- Object.keys(filters).forEach((filterName) => {
- eleventyConfig.addLiquidFilter(filterName, filters[filterName])
+ // filters
+ Object.keys(filters).forEach((filterName) => {
+ eleventyConfig.addLiquidFilter(filterName, filters[filterName])
+ })
+
+ // date filters
+ Object.keys(dateFilters).forEach((filterName) => {
+ eleventyConfig.addLiquidFilter(filterName, dateFilters[filterName])
+ })
+
+ // media filters
+ Object.keys(mediaFilters).forEach((filterName) => {
+ eleventyConfig.addLiquidFilter(filterName, mediaFilters[filterName])
+ })
+
+ // enable merging of tags
+ eleventyConfig.setDataDeepMerge(true)
+
+ // create excerpts
+ eleventyConfig.setFrontMatterParsingOptions({
+ excerpt: true,
+ excerpt_alias: 'post_excerpt',
+ excerpt_separator: '',
+ })
+
+ // md instance
+ const md = markdownIt({ html: true, linkify: true })
+
+ // enable us to iterate over all the tags, excluding posts and all
+ eleventyConfig.addCollection('tagList', (collection) => {
+ const tagsSet = new Set()
+ collection.getAll().forEach((item) => {
+ if (!item.data.tags) return
+ item.data.tags
+ .filter((tag) => !['posts', 'all'].includes(tag))
+ .forEach((tag) => tagsSet.add(tag))
})
+ return Array.from(tagsSet).sort()
+ })
- // date filters
- Object.keys(dateFilters).forEach((filterName) => {
- eleventyConfig.addLiquidFilter(filterName, dateFilters[filterName])
- })
+ md.use(markdownItAnchor, {
+ level: [1, 2],
+ permalink: markdownItAnchor.permalink.headerLink({
+ safariReaderFix: true,
+ class: 'header-anchor',
+ }),
+ })
+ md.use(markdownItFootnote)
+ eleventyConfig.setLibrary('md', md)
- // media filters
- Object.keys(mediaFilters).forEach((filterName) => {
- eleventyConfig.addLiquidFilter(filterName, mediaFilters[filterName])
- })
+ // markdown filter
+ eleventyConfig.addLiquidFilter('markdown', (content) => {
+ return md.render(content)
+ })
- // enable merging of tags
- eleventyConfig.setDataDeepMerge(true)
+ // asset_img shortcode
+ eleventyConfig.addLiquidShortcode('asset_img', (filename, alt) => {
+ return ``
+ })
- // create excerpts
- eleventyConfig.setFrontMatterParsingOptions({
- excerpt: true,
- excerpt_alias: 'post_excerpt',
- excerpt_separator: '',
- })
-
- // md instance
- const md = markdownIt({ html: true, linkify: true })
-
- // enable us to iterate over all the tags, excluding posts and all
- eleventyConfig.addCollection('tagList', (collection) => {
- const tagsSet = new Set()
- collection.getAll().forEach((item) => {
- if (!item.data.tags) return
- item.data.tags
- .filter((tag) => !['posts', 'all'].includes(tag))
- .forEach((tag) => tagsSet.add(tag))
- })
- return Array.from(tagsSet).sort()
- })
-
- md.use(markdownItAnchor, {
- level: [1, 2],
- permalink: markdownItAnchor.permalink.headerLink({
- safariReaderFix: true,
- class: 'header-anchor',
- }),
- })
- md.use(markdownItFootnote)
- eleventyConfig.setLibrary('md', md)
-
- // markdown filter
- eleventyConfig.addLiquidFilter('markdown', (content) => {
- return md.render(content)
- })
-
- // asset_img shortcode
- eleventyConfig.addLiquidShortcode('asset_img', (filename, alt) => {
- return `
`
- })
-
- return {
- passthroughFileCopy: true,
- dir: {
- input: 'src',
- includes: '_includes',
- data: '_data',
- output: '_site',
- },
- }
+ return {
+ passthroughFileCopy: true,
+ dir: {
+ input: 'src',
+ includes: '_includes',
+ data: '_data',
+ output: '_site',
+ },
+ }
}
diff --git a/.eslintrc.js b/.eslintrc.js
index 5339a59f..59af55a4 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,33 +1,33 @@
module.exports = {
- root: true,
- parser: '@typescript-eslint/parser',
- env: {
- browser: true,
- amd: true,
- node: true,
- es6: true,
- },
- plugins: ['@typescript-eslint'],
- extends: [
- 'eslint:recommended',
- 'plugin:@typescript-eslint/eslint-recommended',
- 'plugin:@typescript-eslint/recommended',
- 'plugin:jsx-a11y/recommended',
- 'plugin:prettier/recommended',
+ root: true,
+ parser: '@typescript-eslint/parser',
+ env: {
+ browser: true,
+ amd: true,
+ node: true,
+ es6: true,
+ },
+ plugins: ['@typescript-eslint'],
+ extends: [
+ 'eslint:recommended',
+ 'plugin:@typescript-eslint/eslint-recommended',
+ 'plugin:@typescript-eslint/recommended',
+ 'plugin:jsx-a11y/recommended',
+ 'plugin:prettier/recommended',
+ ],
+ rules: {
+ 'prettier/prettier': 'error',
+ 'jsx-a11y/anchor-is-valid': [
+ 'error',
+ {
+ components: ['Link'],
+ specialLink: ['hrefLeft', 'hrefRight'],
+ aspects: ['invalidHref', 'preferButton'],
+ },
],
- rules: {
- 'prettier/prettier': 'error',
- 'jsx-a11y/anchor-is-valid': [
- 'error',
- {
- components: ['Link'],
- specialLink: ['hrefLeft', 'hrefRight'],
- aspects: ['invalidHref', 'preferButton'],
- },
- ],
- 'no-unused-vars': 0,
- '@typescript-eslint/explicit-module-boundary-types': 'off',
- '@typescript-eslint/no-var-requires': 'off',
- '@typescript-eslint/ban-ts-comment': 'off',
- },
+ 'no-unused-vars': 0,
+ '@typescript-eslint/explicit-module-boundary-types': 'off',
+ '@typescript-eslint/no-var-requires': 'off',
+ '@typescript-eslint/ban-ts-comment': 'off',
+ },
}
diff --git a/.eslintrc.json b/.eslintrc.json
index 434bb3a9..ed51af67 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -12,7 +12,7 @@
"rules": {
"indent": [
"error",
- 4
+ 2
],
"linebreak-style": [
"error",
diff --git a/package.json b/package.json
index dde2fd70..6681e549 100644
--- a/package.json
+++ b/package.json
@@ -1,65 +1,61 @@
{
- "name": "coryd.dev",
- "version": "1.0.0",
- "description": "The source for my personal site, blog and portfolio. Build using 11ty and hosted on Vercel.",
- "main": "index.html",
- "scripts": {
- "start": "eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
- "debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
- "lint": "eslint .",
- "lint:fix": "eslint . --fix",
- "build": "rm -rf .cache && ELEVENTY_PRODUCTION=true eleventy && NODE_ENV=production npx tailwindcss -i ./tailwind.css -c ./tailwind.config.js -o _site/assets/styles/tailwind.css",
- "prepare": "husky install"
- },
- "keywords": [],
- "author": "Cory Dransfeldt",
- "license": "ISC",
- "devDependencies": {
- "@11ty/eleventy": "^2.0.0",
- "@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
- "@fontsource/inter": "^4.5.15",
- "eleventy-plugin-heroicons": "^1.1.0",
- "eslint": "^8.36.0",
- "eslint-config-prettier": "^8.8.0",
- "eslint-plugin-prettier": "^4.2.1",
- "postcss": "^8.4.5",
- "prettier": "^2.8.7",
- "prettier-plugin-tailwindcss": "^0.2.5",
- "sanitize-html": "^2.10.0"
- },
- "dependencies": {
- "@11ty/eleventy-activity-feed": "^1.0.9",
- "@11ty/eleventy-fetch": "^4.0.0",
- "@11ty/eleventy-img": "^3.0.0",
- "@commitlint/cli": "^17.5.0",
- "@commitlint/config-conventional": "^17.4.4",
- "@extractus/feed-extractor": "^6.2.1",
- "@funboxteam/markdown-lint": "^2.0.1",
- "@sherby/eleventy-plugin-files-minifier": "^1.1.1",
- "@tailwindcss/typography": "^0.5.1",
- "@typescript-eslint/eslint-plugin": "^5.56.0",
- "@typescript-eslint/parser": "^5.56.0",
- "autoprefixer": "^10.4.2",
- "dotenv-flow": "^3.2.0",
- "eleventy-plugin-unfurl": "^1.0.0",
- "eslint-plugin-jsx-a11y": "^6.7.1",
- "husky": "^8.0.3",
- "lint-staged": "^13.2.0",
- "liquidjs": "^10.7.0",
- "markdown-it": "^13.0.1",
- "markdown-it-anchor": "^8.4.1",
- "markdown-it-footnote": "^3.0.3",
- "marked": "^4.3.0",
- "tailwind-dracula": "^1.1.0",
- "tailwindcss": "^3.0.18"
- },
- "lint-staged": {
- "**/*.{js,jsx,ts,tsx}": [
- "npx prettier --write",
- "npx eslint --fix"
- ],
- "*.md": [
- "markdown-lint --fix --typograph"
- ]
- }
+ "name": "coryd.dev",
+ "version": "1.0.0",
+ "description": "The source for my personal site, blog and portfolio. Build using 11ty and hosted on Vercel.",
+ "main": "index.html",
+ "scripts": {
+ "start": "eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
+ "debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
+ "lint": "eslint .",
+ "lint:fix": "eslint . --fix",
+ "build": "rm -rf .cache && ELEVENTY_PRODUCTION=true eleventy && NODE_ENV=production npx tailwindcss -i ./tailwind.css -c ./tailwind.config.js -o _site/assets/styles/tailwind.css",
+ "prepare": "husky install"
+ },
+ "keywords": [],
+ "author": "Cory Dransfeldt",
+ "license": "ISC",
+ "devDependencies": {
+ "@11ty/eleventy": "^2.0.0",
+ "@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
+ "@fontsource/inter": "^4.5.15",
+ "eleventy-plugin-heroicons": "^1.1.0",
+ "eslint": "^8.36.0",
+ "eslint-config-prettier": "^8.8.0",
+ "eslint-plugin-prettier": "^4.2.1",
+ "postcss": "^8.4.5",
+ "prettier": "^2.8.7",
+ "prettier-plugin-tailwindcss": "^0.2.5",
+ "sanitize-html": "^2.10.0"
+ },
+ "dependencies": {
+ "@11ty/eleventy-activity-feed": "^1.0.9",
+ "@11ty/eleventy-fetch": "^4.0.0",
+ "@11ty/eleventy-img": "^3.0.0",
+ "@commitlint/cli": "^17.5.0",
+ "@commitlint/config-conventional": "^17.4.4",
+ "@extractus/feed-extractor": "^6.2.1",
+ "@sherby/eleventy-plugin-files-minifier": "^1.1.1",
+ "@tailwindcss/typography": "^0.5.1",
+ "@typescript-eslint/eslint-plugin": "^5.56.0",
+ "@typescript-eslint/parser": "^5.56.0",
+ "autoprefixer": "^10.4.2",
+ "dotenv-flow": "^3.2.0",
+ "eleventy-plugin-unfurl": "^1.0.0",
+ "eslint-plugin-jsx-a11y": "^6.7.1",
+ "husky": "^8.0.3",
+ "lint-staged": "^13.2.0",
+ "liquidjs": "^10.7.0",
+ "markdown-it": "^13.0.1",
+ "markdown-it-anchor": "^8.4.1",
+ "markdown-it-footnote": "^3.0.3",
+ "marked": "^4.3.0",
+ "tailwind-dracula": "^1.1.0",
+ "tailwindcss": "^3.0.18"
+ },
+ "lint-staged": {
+ "**/*.{js,jsx,ts,tsx}": [
+ "npx prettier --write",
+ "npx eslint --fix"
+ ]
+ }
}
diff --git a/postcss.config.js b/postcss.config.js
index 875314a7..33ad091d 100644
--- a/postcss.config.js
+++ b/postcss.config.js
@@ -1,7 +1,6 @@
-
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
- }
-}
\ No newline at end of file
+ },
+}
diff --git a/prettier.config.js b/prettier.config.js
index 6a0e7901..0423726a 100644
--- a/prettier.config.js
+++ b/prettier.config.js
@@ -1,9 +1,9 @@
module.exports = {
- semi: false,
- singleQuote: true,
- printWidth: 100,
- tabWidth: 4,
- useTabs: false,
- trailingComma: 'es5',
- bracketSpacing: true,
+ semi: false,
+ singleQuote: true,
+ printWidth: 100,
+ tabWidth: 2,
+ useTabs: false,
+ trailingComma: 'es5',
+ bracketSpacing: true,
}
diff --git a/src/404.md b/src/404.md
index 7850db44..62f8a89f 100644
--- a/src/404.md
+++ b/src/404.md
@@ -5,9 +5,9 @@ permalink: 404.html
---
{{ site.description }}
-