From a0788f477641b5238be35c5751ab96fb8e8ac496 Mon Sep 17 00:00:00 2001 From: ReeseHatfield Date: Wed, 19 Aug 2026 15:51:24 -0400 Subject: [PATCH 1/2] move test-init to use html over md --- scripts/test-init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-init.sh b/scripts/test-init.sh index 8b5789e..7f8e5b9 100755 --- a/scripts/test-init.sh +++ b/scripts/test-init.sh @@ -12,6 +12,6 @@ cd test pwd -./oseda init --title ExampleProject --tags economics ComPuterScience --color red --template MaRKDoWN +./oseda init --title ExampleProject --tags economics ComPuterScience --color red --template HTML mv oseda ExampleProject \ No newline at end of file From 75566fbbbc6c6c041a907a15f45111f42cdeae6d Mon Sep 17 00:00:00 2001 From: ReeseHatfield Date: Wed, 19 Aug 2026 15:51:34 -0400 Subject: [PATCH 2/2] install highlight.js on init --- src/cmd/init.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/init.rs b/src/cmd/init.rs index 154d060..3facc6c 100644 --- a/src/cmd/init.rs +++ b/src/cmd/init.rs @@ -87,7 +87,7 @@ pub fn init(opts: InitOptions) -> Result<(), Box> { let npm_commands = vec![ format!("install --save-dev vite@5.4.21 http-server@14.1.1"), - format!("install reveal.js@5.2.1 serve@14.2.6"), + format!("install reveal.js@5.2.1 serve@14.2.6 highlight.js@11.12.0"), format!("install patch-package@8.0.1"), ];