extended flake, now also package available. fixed slides path. updated versions in code

This commit is contained in:
2025-10-20 18:49:25 +02:00
parent 67c50b4d97
commit 73a087e303
3 changed files with 63 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ fn asciidoctor_docs(in_path: &str, out_path: &str) -> process::Command {
fn asciidoctor_slides(in_path: &str, out_path: &str) -> process::Command {
let mut command = process::Command::new(format!("asciidoctor-revealjs"));
let out_dir = parent_path(out_path);
let revealjs_path = path_between(out_dir.to_string(), "./dist/slides/revealjs".to_string());
let revealjs_path = "/slides/revealjs";
command
.arg(format!("{in_path}"))