From 45ebf9065c8d9e6805b65c67af9ec97c9fca38f9 Mon Sep 17 00:00:00 2001 From: RWTH-MK Date: Sat, 16 Nov 2024 11:49:21 +0100 Subject: [PATCH] test git action --- content/instructions/Test/test.md | 2 +- pandoc.sh | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/content/instructions/Test/test.md b/content/instructions/Test/test.md index 814edab..0d1ec2c 100644 --- a/content/instructions/Test/test.md +++ b/content/instructions/Test/test.md @@ -16,4 +16,4 @@ category: --- ## Am Anfang ... -... war der Testlauf, der ihr aller Schicksal besiegeln sollte. Jetzt neu mit KI-Panade! Knusper! Woop! Let's go +... war der Testlauf, der ihr aller Schicksal besiegeln sollte. Jetzt neu mit KI-Panade! Knusper! Woop :D diff --git a/pandoc.sh b/pandoc.sh index 2ff482a..6c9f45a 100644 --- a/pandoc.sh +++ b/pandoc.sh @@ -1,10 +1,10 @@ -#!/bin/bash - -Only_Standalone_Output_Types="latex pdf html docx odt" - -parallel --jobs 0 \ - pandoc --from markdown --to native {} -o '{.}.ast' ';'\ - for i in "$Only_Standalone_Output_Types"';' do \ - pandoc --from native '{.}.ast' --standalone -o '{.}.$i' ';' \ - done';' \ - rm '{.}.ast' ::: "$1" +#!/bin/bash + +Only_Standalone_Output_Types="latex pdf html docx odt" + +parallel --jobs 0 \ + pandoc --from markdown --to native './{}' -o './{.}.ast' ';'\ + for i in "$Only_Standalone_Output_Types"';' do \ + pandoc --from native './{.}.ast' --standalone -o './{.}.$i' ';' \ + done';' \ + rm './{.}.ast' ::: "$1"