added asciidoc support

This commit is contained in:
Kristian Krsnik 2023-08-17 21:43:24 +02:00
parent a432bbfcf4
commit 7aec8a83e7
2 changed files with 35 additions and 29 deletions

View File

@ -1,36 +1,39 @@
baseURL = 'https://krezzlu.gitlab.io/blog'
baseURL = 'https://blog.krsnik.at'
languageCode = 'en-us'
title = "Kristian's Blog"
theme = 'nostyleplease'
[security.exec]
allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$', '^asciidoctor$']
[markup]
[markup.goldmark]
[markup.goldmark.parser]
[markup.goldmark.parser.attribute]
block = true
title = true
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = true
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNos = true
lineNumbersInTable = true
noClasses = true
noHl = false
style = 'rtt'
tabWidth = 4
[markup.tableOfContents]
startLevel = 2
endLevel = 3
ordered = false
[markup.goldmark]
[markup.goldmark.parser]
[markup.goldmark.parser.attribute]
block = true
title = true
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = true
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNos = true
lineNumbersInTable = true
noClasses = true
noHl = false
style = 'rtt'
tabWidth = 4
[markup.tableOfContents]
startLevel = 2
endLevel = 3
ordered = false
[params]
[params.theme_config]
appearance = "auto"
back_home_text = "$HOME"
date_format = "2006-01-02"
[params.theme_config]
appearance = "auto"
back_home_text = "$HOME"
date_format = "2006-01-02"

View File

@ -34,6 +34,9 @@
&& (baseNameOf path == "themes" || baseNameOf path == "public")))
./.;
# To add asciidoc support
nativeBuildInputs = [pkgs.asciidoctor];
# Link theme to themes folder and build
buildPhase = ''
mkdir -p themes
@ -47,7 +50,7 @@
};
devShells.default = pkgs.mkShellNoCC {
packages = with pkgs; [hugo];
packages = with pkgs; [hugo asciidoctor];
# Link theme to themes folder
shellHook = ''
mkdir -p themes