Got back the LI for lower-cased title notebooks.
Not sure what went wrong there.
This commit is contained in:
parent
406740bbd6
commit
dbcbf16bc9
|
|
@ -41,6 +41,8 @@ I'm in the process of rewriting them to use the Joy kernel.</p>
|
||||||
<li><a href="/notebooks/TypeChecking.html">TypeChecking</a></li>
|
<li><a href="/notebooks/TypeChecking.html">TypeChecking</a></li>
|
||||||
<li><a href="/notebooks/Types.html">Types</a></li>
|
<li><a href="/notebooks/Types.html">Types</a></li>
|
||||||
<li><a href="/notebooks/Zipper.html">Zipper</a></li>
|
<li><a href="/notebooks/Zipper.html">Zipper</a></li>
|
||||||
|
<li><a href="/notebooks/fun_with_scan.html">fun with scan</a></li>
|
||||||
|
<li><a href="/notebooks/with_sympy.html">with sympy</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,9 @@ docs_html = $(patsubst %.ipynb,%.html,$(docs))
|
||||||
all: mov
|
all: mov
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) -v $(docs_html)
|
$(RM) -v $(docs_html) index.html
|
||||||
|
|
||||||
index.html: build_index.py
|
index.html: build_index.py $(docs_html)
|
||||||
python build_index.py > index.html
|
python build_index.py > index.html
|
||||||
|
|
||||||
$(docs_html): %.html : %.ipynb
|
$(docs_html): %.html : %.ipynb
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue