Minor cleanup.
This commit is contained in:
parent
cde292e24b
commit
6a3576e9ef
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>Functor-Reference</title>
|
||||
<title>Functor Reference</title>
|
||||
<style>
|
||||
html {
|
||||
line-height: 1.5;
|
||||
|
|
@ -150,10 +150,11 @@
|
|||
<![endif]-->
|
||||
</head>
|
||||
<body>
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">Functor Reference</h1>
|
||||
</header>
|
||||
<nav id="TOC" role="doc-toc">
|
||||
<ul>
|
||||
<li><a href="#functor-reference">Functor Reference</a>
|
||||
<ul>
|
||||
<li><a href="#section">&</a></li>
|
||||
<li><a href="#section-1">&&</a></li>
|
||||
<li><a href="#section-2">*</a></li>
|
||||
|
|
@ -344,10 +345,8 @@
|
|||
<li><a href="#x">x</a></li>
|
||||
<li><a href="#xor">xor</a></li>
|
||||
<li><a href="#zip">zip</a></li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<h1 id="functor-reference">Functor Reference</h1>
|
||||
<p>Version -10.0.0</p>
|
||||
<p>Each function, combinator, or definition should be documented here.</p>
|
||||
<hr />
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
|
||||
# Functor Reference
|
||||
|
||||
Version -10.0.0
|
||||
|
||||
Each function, combinator, or definition should be documented here.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
|
||||
# Functor Reference
|
||||
|
||||
Version -10.0.0
|
||||
|
||||
Each function, combinator, or definition should be documented here.
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
FUNCDOCS = $(wildcard ../*.md)
|
||||
TITLE = --metadata title="Functor Reference"
|
||||
TOC = --toc --toc-depth=2
|
||||
|
||||
|
||||
all: Functor-Reference.md
|
||||
pandoc -s --toc --toc-depth=2 --ascii Functor-Reference.md -o FuncRef.html
|
||||
pandoc -s $(TOC) $(TITLE) --ascii Functor-Reference.md -o FuncRef.html
|
||||
|
||||
|
||||
Functor-Reference.md: HEADER.md $(FUNCDOCS)
|
||||
|
|
|
|||
Loading…
Reference in New Issue