Skip to content

Commit

Permalink
Merge pull request #45 from jdsteinbach/202407_updates
Browse files Browse the repository at this point in the history
202407 updates
  • Loading branch information
jdsteinbach authored Jul 30, 2024
2 parents 2dd917c + b733977 commit 3cfe282
Show file tree
Hide file tree
Showing 12 changed files with 3,302 additions and 3,517 deletions.
12 changes: 8 additions & 4 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ const mdOptions = {
typographer: true
}
const mdAnchorOpts = {
permalink: true,
permalinkClass: 'anchor-link',
permalinkSymbol: '#',
permalink: markdownItAnchor.permalink.linkInsideHeader({
symbol: '#',
class: 'anchor-link',
}),
level: [1, 2, 3, 4]
}

Expand All @@ -35,7 +36,10 @@ module.exports = eleventyConfig => {

// Plugins
eleventyConfig.addPlugin(pluginTOC)
eleventyConfig.addPlugin(pluginDropcap)
eleventyConfig.addPlugin(
pluginDropcap,
{skipFirstParagraphClass: 'precursor'}
)

// Filters
eleventyConfig.addFilter('random', max => {
Expand Down
5 changes: 4 additions & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@
"severity": "warning"
}
],
"order/properties-alphabetical-order": null
"order/properties-alphabetical-order": null,
"plugin/selector-bem-pattern": {
"preset": "bem"
}
}
}
Loading

0 comments on commit 3cfe282

Please sign in to comment.