Skip to content

Commit e50edec

Browse files
committed
version 6.3 in the schema
1 parent b279625 commit e50edec

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
File renamed without changes.

schema/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@
88
<link rel="stylesheet" href="schema_doc.css">
99
<script src="schema_doc.js" defer></script>
1010

11-
<title>Numbas exam schema v6.1</title>
11+
<title>Numbas exam schema v6.3</title>
1212
</head>
1313
<body id="root">
1414
<header>
15-
<h1>Numbas exam schema v6.1</h2>
15+
<h1>Numbas exam schema v6.3</h2>
1616
</header>
1717
<main>
1818
<div class="intro">
1919
<p><a href="https://www.numbas.org.uk">Numbas</a> <code>.exam</code> files are JSON objects, with an additional comment line at the start describing the version of the format used.</p>
2020
<p>The line for the current version should look like this:</p>
2121
<pre>// Numbas version: exam_results_page_options</pre>
2222
<p>The rest of the file should consist of a single JSON object, matching the following schema.</p>
23-
<p><a href="exam_schema.6.1.json">Download the schema in JSON-Schema format</a></p>
23+
<p><a href="exam_schema.6.3.json">Download the schema in JSON-Schema format</a></p>
2424
</div>
2525

2626
<article class="schema open">

schema/make_schema.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import json
22
import jinja2
33

4-
version = '6.1'
4+
version = '6.3'
55

66
with open(f'exam_schema.{version}.json') as f:
77
schema = json.loads(f.read())

0 commit comments

Comments
 (0)