We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f8d7a0 commit b2e7827Copy full SHA for b2e7827
3 files changed
.metals/metals.lock.db
@@ -0,0 +1,6 @@
1
+#FileLock
2
+#Mon Jul 28 16:21:32 BST 2025
3
+hostName=localhost
4
+id=1984368cdad49ef6310e31a8ad975c2da3ea6a244d8
5
+method=file
6
+server=localhost\:46117
in2lambda/json_convert/json_convert.py
@@ -36,6 +36,7 @@ def converter(
36
for i in range(len(ListQuestions)):
37
output = deepcopy(template)
38
39
+ output["orderNumber"] = i # order number starts at 0
40
# add title to the question file
41
if ListQuestions[i].title != "":
42
output["title"] = ListQuestions[i].title
in2lambda/json_convert/minimal_template.json
@@ -1,4 +1,5 @@
{
+ "orderNumber": 0,
"displayFinalAnswer": true,
"displayStructuredTutorial": true,
"displayWorkedSolution": true,
0 commit comments