Change RunPandoc to be more file-centric

This commit is contained in:
2024-09-24 22:24:06 +02:00
parent 2b5f4f8b1e
commit 6ebc3f5e3a
2 changed files with 3 additions and 3 deletions

View File

@@ -18,8 +18,8 @@ evalFunctionIO f x = case (f, x) of
(SaveFile, Tuple (String _, String _)) ->
pure $ Empty
(RunPandoc, String _) ->
pure $ String undefined
(RunPandoc, Tuple (String _, String _)) ->
pure $ Empty
_ ->
error "unexpected combination of function and argument type"