- Commit
- aedb6ca8cffca7270700aaddcf82bf616030893c
- Parent
- c74b87f9bbdf8a147b892bd0ac48dbd01a0297cf
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Fixed template path in tools/makespec.py.
My personal build of CMark ✏️
Fixed template path in tools/makespec.py.
1 file changed, 1 insertion, 1 deletion
Status | File Name | N° Changes | Insertions | Deletions |
Modified | tools/makespec.py | 2 | 1 | 1 |
diff --git a/tools/makespec.py b/tools/makespec.py @@ -118,7 +118,7 @@ metadata = parseYaml(yaml) if specformat == "markdown": sys.stdout.write(yaml + '\n\n' + mdtext) elif specformat == "html": - with open("template.html", "r", encoding="utf-8") as templatefile: + with open("tools/template.html", "r", encoding="utf-8") as templatefile: template = Template(templatefile.read()) toclines = [] for section in sections: