Install markdown-it-attrs plugin
This commit is contained in:
parent
ad1fdc6eb4
commit
315a8ad7c0
|
@ -10,6 +10,7 @@ Source code of my personal and hobby website, [Leilukin's Hub](https://leilukin.
|
||||||
- [eleventy-plugin-metagen](https://www.npmjs.com/package/eleventy-plugin-metagen)
|
- [eleventy-plugin-metagen](https://www.npmjs.com/package/eleventy-plugin-metagen)
|
||||||
- [eleventy-plugin-embed-everything](https://www.npmjs.com/package/eleventy-plugin-embed-everything)
|
- [eleventy-plugin-embed-everything](https://www.npmjs.com/package/eleventy-plugin-embed-everything)
|
||||||
- [markdown-it-anchor](https://www.npmjs.com/package/markdown-it-anchor)
|
- [markdown-it-anchor](https://www.npmjs.com/package/markdown-it-anchor)
|
||||||
|
- [markdown-it-attrs](https://github.com/arve0/markdown-it-attrs)
|
||||||
- [Table of Contents (nesting) Eleventy Plugin](https://www.npmjs.com/package/eleventy-plugin-nesting-toc)
|
- [Table of Contents (nesting) Eleventy Plugin](https://www.npmjs.com/package/eleventy-plugin-nesting-toc)
|
||||||
|
|
||||||
## Self-hosted Assets
|
## Self-hosted Assets
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Installed Plug-ins
|
// Installed Plugins
|
||||||
const { EleventyRenderPlugin } = require("@11ty/eleventy");
|
const { EleventyRenderPlugin } = require("@11ty/eleventy");
|
||||||
const pluginRss = require("@11ty/eleventy-plugin-rss");
|
const pluginRss = require("@11ty/eleventy-plugin-rss");
|
||||||
const eleventyNavigationPlugin = require("@11ty/eleventy-navigation");
|
const eleventyNavigationPlugin = require("@11ty/eleventy-navigation");
|
||||||
|
@ -10,9 +10,10 @@ const embedEverything = require("eleventy-plugin-embed-everything");
|
||||||
// Configure slug filter
|
// Configure slug filter
|
||||||
const slugify = require("slugify");
|
const slugify = require("slugify");
|
||||||
|
|
||||||
// Configure markdown-it plug-ins
|
// Configure markdown-it plugins
|
||||||
const markdownIt = require("markdown-it");
|
const markdownIt = require("markdown-it");
|
||||||
const markdownItAnchor = require("markdown-it-anchor");
|
const markdownItAnchor = require("markdown-it-anchor");
|
||||||
|
const markdownItAttr = require("markdown-it-attrs");
|
||||||
|
|
||||||
module.exports = function (eleventyConfig) {
|
module.exports = function (eleventyConfig) {
|
||||||
// Copy files
|
// Copy files
|
||||||
|
@ -40,11 +41,8 @@ module.exports = function (eleventyConfig) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Configure markdown-it plug-ins
|
// Configure markdown-it plugins
|
||||||
eleventyConfig.setLibrary(
|
eleventyConfig.setLibrary('md', markdownIt().use(markdownItAnchor))
|
||||||
'md',
|
|
||||||
markdownIt().use(markdownItAnchor)
|
|
||||||
)
|
|
||||||
const linkAfterHeader = markdownItAnchor.permalink.linkAfterHeader({
|
const linkAfterHeader = markdownItAnchor.permalink.linkAfterHeader({
|
||||||
class: "heading-anchor",
|
class: "heading-anchor",
|
||||||
symbol: "<span hidden>#</span>",
|
symbol: "<span hidden>#</span>",
|
||||||
|
@ -57,12 +55,10 @@ module.exports = function (eleventyConfig) {
|
||||||
lower: true,
|
lower: true,
|
||||||
strict: true,
|
strict: true,
|
||||||
remove: /["]/g,
|
remove: /["]/g,
|
||||||
}),
|
}),
|
||||||
tabIndex: false,
|
tabIndex: false,
|
||||||
permalink(slug, opts, state, idx) {
|
permalink(slug, opts, state, idx) {
|
||||||
state.tokens.splice(
|
state.tokens.splice(idx, 0,
|
||||||
idx,
|
|
||||||
0,
|
|
||||||
Object.assign(new state.Token("div_open", "div", 1), {
|
Object.assign(new state.Token("div_open", "div", 1), {
|
||||||
// Add class "header-wrapper [h1 or h2 or h3]"
|
// Add class "header-wrapper [h1 or h2 or h3]"
|
||||||
attrs: [["class", `heading-wrapper ${state.tokens[idx].tag}`]],
|
attrs: [["class", `heading-wrapper ${state.tokens[idx].tag}`]],
|
||||||
|
@ -70,9 +66,7 @@ module.exports = function (eleventyConfig) {
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
state.tokens.splice(
|
state.tokens.splice(idx + 4, 0,
|
||||||
idx + 4,
|
|
||||||
0,
|
|
||||||
Object.assign(new state.Token("div_close", "div", -1), {
|
Object.assign(new state.Token("div_close", "div", -1), {
|
||||||
block: true,
|
block: true,
|
||||||
})
|
})
|
||||||
|
@ -85,7 +79,9 @@ module.exports = function (eleventyConfig) {
|
||||||
/* Markdown Overrides */
|
/* Markdown Overrides */
|
||||||
let markdownLibrary = markdownIt({
|
let markdownLibrary = markdownIt({
|
||||||
html: true,
|
html: true,
|
||||||
}).use(markdownItAnchor, markdownItAnchorOptions);
|
})
|
||||||
|
.use(markdownItAnchor, markdownItAnchorOptions)
|
||||||
|
.use(markdownItAttr);
|
||||||
|
|
||||||
/* This is the part that tells 11ty to swap to our custom config */
|
/* This is the part that tells 11ty to swap to our custom config */
|
||||||
eleventyConfig.setLibrary("md", markdownLibrary);
|
eleventyConfig.setLibrary("md", markdownLibrary);
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
"eleventy-plugin-nesting-toc": "^1.3.0",
|
"eleventy-plugin-nesting-toc": "^1.3.0",
|
||||||
"install": "^0.13.0",
|
"install": "^0.13.0",
|
||||||
"markdown-it-anchor": "^8.6.7",
|
"markdown-it-anchor": "^8.6.7",
|
||||||
|
"markdown-it-attrs": "^4.1.6",
|
||||||
"slugify": "^1.6.6"
|
"slugify": "^1.6.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue