about summary refs log tree commit diff stats
path: root/README.html
blob: 97616a42104eae46e6f60b979a77c4a618dd0bf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<h1 id="autocento-of-the-breakfast-table">Autocento of the breakfast table</h1>
<h2 id="user-guide-and-manual">User guide and manual</h2>
<h2 id="or-whatever.-i-dont-care.">or whatever. I don't care.</h2>
<h1 id="part-i-in-which-our-hero-explains-the-goal">Part I: in which our hero explains the goal</h1>
<p>The goal in this book, <em>Autocento of the breakfast table</em>, is to explore the workings of revision and recursion through words, both in the head and on paper. It's a hypertextual imagining of how things could have been, in all of their possibilities.</p>
<h1 id="part-ii-enough-of-that-high-faluting-bullshit-down-to-brass-tax">Part II: Enough of that high-faluting bullshit; down to brass tax</h1>
<h2 id="a.k.a.-using-pandoc-to-compile-them-pages-neff">A.K.A. Using Pandoc to compile them pages, neff</h2>
<p>This project uses John MacFarlane's amazing, etc. <a href="http://johnmacfarlane.net/pandoc/">pandoc</a> for the fun, HTML-writing stuff. Use the <code>compile.sh</code> script to compile the stuff down.</p>
<p><em>Note: you're on Windows right now, so make sure and type <code>bash compile.sh</code> to run the program.</em></p>
<p>At the top of each file, there should be a YAML block that looks something like this:</p>
<pre class="sourceCode yaml"><code class="sourceCode yaml"><span class="ot">---</span>
<span class="fu">title:</span> <span class="st">&#39;Title of poem&#39;</span>
<span class="fu">subtitle:</span> <span class="st">&#39;Subtitle&#39;</span><span class="er"> # optional</span>
<span class="fu">genre:</span> <span class="st">&#39;[verse|prose]&#39;</span>

<span class="fu">project:</span>
<span class="kw">-</span> <span class="fu">title:</span> <span class="st">&#39;Original project name&#39;</span>
  <span class="fu">order:</span> <span class="kw">[</span>number<span class="kw">]</span>
  <span class="fu">prev:</span>
  <span class="kw">-</span> <span class="fu">title:</span> <span class="st">&#39;Title of previous thing in original project&#39;</span>
    <span class="fu">link:</span> <span class="st">&#39;link to that thing&#39;</span>
  <span class="fu">next:</span>
  <span class="kw">-</span> <span class="fu">title:</span> <span class="st">&#39;Title of next thing in original project&#39;</span>
  <span class="kw">-</span> <span class="fu">link:</span> <span class="st">&#39;link to that thing&#39;</span>

<span class="fu">epigraph:</span> <span class="co"># optional</span>
<span class="kw">-</span> <span class="fu">content:</span> <span class="st">&#39;Quote from outside&#39;</span>
  <span class="fu">link:</span> <span class="st">&#39;Link to online version of epigraph&#39;</span>
  <span class="fu">attrib:</span> <span class="st">&#39;Who said the epigraph&#39;</span><span class="er"> # optional</span>
<span class="co">...</span></code></pre>