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,9 +1,12 @@
baseURL = 'https://krezzlu.gitlab.io/blog' baseURL = 'https://blog.krsnik.at'
languageCode = 'en-us' languageCode = 'en-us'
title = "Kristian's Blog" title = "Kristian's Blog"
theme = 'nostyleplease' theme = 'nostyleplease'
[security.exec]
allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$', '^asciidoctor$']
[markup] [markup]
[markup.goldmark] [markup.goldmark]
[markup.goldmark.parser] [markup.goldmark.parser]

View File

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