We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f301782 commit e8950c1Copy full SHA for e8950c1
src/render_html.js
@@ -29,7 +29,7 @@ let chapters = fs.readdirSync(__dirname + "/..")
29
.filter(file => /^\d{2}_\w+\.md$/.test(file))
30
.sort()
31
.map(file => /^\d{2}_(\w+)\.md$/.exec(file)[1])
32
- .concat(['hints'])
+if (epub) chapters.push("hints")
33
34
function escapeChar(ch) {
35
return ch == "<" ? "<" : ch == ">" ? ">" : ch == "&" ? "&" : """
0 commit comments