feat: update for doks-core 1.2.0

This commit is contained in:
Henk Verlinde 2023-12-22 16:29:45 +01:00
parent e2ef90fe8c
commit e847c2656e
6 changed files with 515 additions and 581 deletions

View File

@ -24,8 +24,8 @@ defaultMarkdownHandler = "goldmark"
lineNumbersInTable = false lineNumbersInTable = false
noClasses = false noClasses = false
noHl = false noHl = false
style = 'github-dark' style = 'monokai'
tabWidth = 4 tabWidth = 2
[tableOfContents] [tableOfContents]
endLevel = 3 endLevel = 3

View File

@ -43,10 +43,14 @@ module.exports = {
'img-fluid', 'img-fluid',
'blur-up', 'blur-up',
'lazyloaded', 'lazyloaded',
'container-fw ',
...whitelister([ ...whitelister([
'./assets/scss/**/*.css', './assets/scss/**/*.css',
'./assets/scss/**/*.scss', './assets/scss/**/*.scss',
'./node_modules/katex/dist/katex.css', // './node_modules/katex/dist/katex.css',
'./node_modules/@hyas/doks-core/assets/scss/components/_code.scss',
'./node_modules/@hyas/doks-core/assets/scss/components/_expressive-code.scss',
'./node_modules/@hyas/doks-core/assets/scss/common/_syntax.scss',
]), ]),
], ],
}), }),

View File

@ -1,7 +1,7 @@
--- ---
title: "Example Post" title: "Example Post"
description: "Just an example post." description: "Just an example post."
summary: "" summary: "You can use blog posts for announcing product updates and features."
date: 2023-09-07T16:27:22+02:00 date: 2023-09-07T16:27:22+02:00
lastmod: 2023-09-07T16:27:22+02:00 lastmod: 2023-09-07T16:27:22+02:00
draft: false draft: false
@ -17,3 +17,9 @@ seo:
canonical: "" # custom canonical URL (optional) canonical: "" # custom canonical URL (optional)
noindex: false # false (default) or true noindex: false # false (default) or true
--- ---
Well-thought-through product announcements will help increase feature awareness and engage users with new functionality. Just like [sharing your public roadmap](https://canny.io/blog/should-you-have-a-public-roadmap/), it's also a great way to let potential customers see that you're constantly improving.
## Further reading
- Read [How to announce product updates and features](https://canny.io/blog/announce-product-updates-features/)

View File

@ -32,7 +32,6 @@
"noscript", "noscript",
"p", "p",
"path", "path",
"pre",
"script", "script",
"section", "section",
"small", "small",
@ -62,17 +61,10 @@
"btn-primary", "btn-primary",
"btn-toggle", "btn-toggle",
"btn-toggle-nav", "btn-toggle-nav",
"callout",
"callout-body",
"callout-content",
"callout-icon",
"callout-note",
"callout-title",
"card", "card",
"card-body", "card-body",
"card-list", "card-list",
"categories", "categories",
"chroma",
"col-lg-10", "col-lg-10",
"col-lg-11", "col-lg-11",
"col-lg-12", "col-lg-12",
@ -125,7 +117,6 @@
"h3", "h3",
"h4", "h4",
"h5", "h5",
"highlight",
"home", "home",
"icon", "icon",
"icon-tabler", "icon-tabler",
@ -139,7 +130,6 @@
"icon-tabler-search", "icon-tabler-search",
"icon-tabler-sun", "icon-tabler-sun",
"icon-tabler-x", "icon-tabler-x",
"info-circle",
"justify-content-between", "justify-content-between",
"justify-content-center", "justify-content-center",
"justify-content-end", "justify-content-end",
@ -152,8 +142,6 @@
"list-view", "list-view",
"mb-0", "mb-0",
"mb-1", "mb-1",
"mb-3",
"mb-4",
"me-2", "me-2",
"me-auto", "me-auto",
"me-lg-1", "me-lg-1",
@ -172,7 +160,6 @@
"ms-3", "ms-3",
"ms-lg-2", "ms-lg-2",
"mt-3", "mt-3",
"mt-4",
"mt-n3", "mt-n3",
"mx-2", "mx-2",
"mx-auto", "mx-auto",
@ -198,13 +185,9 @@
"page-links", "page-links",
"page-nav", "page-nav",
"pb-1", "pb-1",
"pb-2",
"pb-3", "pb-3",
"pe-4",
"position-relative", "position-relative",
"privacy", "privacy",
"ps-3",
"pt-4",
"px-0", "px-0",
"query-no-results", "query-no-results",
"reading-time", "reading-time",
@ -230,7 +213,6 @@
"sticky-top", "sticky-top",
"stretched-link", "stretched-link",
"submitted", "submitted",
"svg-inline",
"tags", "tags",
"taxonomy", "taxonomy",
"text-body", "text-body",

1053
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "doks", "name": "doks",
"version": "1.1.1", "version": "1.2.0",
"description": "Doks theme", "description": "Doks theme",
"author": "Hyas", "author": "Hyas",
"license": "MIT", "license": "MIT",
@ -30,11 +30,14 @@
"version": "auto-changelog -p && git add CHANGELOG.md" "version": "auto-changelog -p && git add CHANGELOG.md"
}, },
"dependencies": { "dependencies": {
"@hyas/doks-core": "^1.1.1" "@hyas/doks-core": "^1.2.0"
}, },
"devDependencies": { "devDependencies": {
"auto-changelog": "^2.4.0" "auto-changelog": "^2.4.0"
}, },
"overrides": {
"semver": "^7.5.4"
},
"engines": { "engines": {
"node": ">=16.12.0", "node": ">=16.12.0",
"pnpm": ">=8.6.2" "pnpm": ">=8.6.2"