We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a815a3e commit 587a00cCopy full SHA for 587a00c
evaluation_function.wl
@@ -35,11 +35,11 @@ evalQuestionIO = Function[
35
jsonData = Import[#1, "JSON"] //. List :> Association;
36
command = jsonData["method"];
37
38
- resultAssoc = Which[
+ resultAssoc = ExportForm[Which[
39
command == "eval", processEvaluate[jsonData],
40
command == "preview", processPreview[jsonData],
41
True, "Incorrect command"
42
- ];
+ ]];
43
44
Print["Outputted JSON"];
45
Print[resultAssoc];
0 commit comments