Skip to content

Commit

Permalink
test git action
Browse files Browse the repository at this point in the history
  • Loading branch information
RWTH-MK committed Nov 16, 2024
1 parent d1a4bed commit 45ebf90
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion content/instructions/Test/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
20 changes: 10 additions & 10 deletions pandoc.sh
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 45ebf90

Please sign in to comment.