diff options
author | Case Duckworth | 2015-03-02 16:59:55 -0700 |
---|---|---|
committer | Case Duckworth | 2015-03-02 16:59:55 -0700 |
commit | 26e1a84cbbf50330ce36724e6511edf40dea9548 (patch) | |
tree | 536904cc97a4a9cecfcf7c0863e85286f704efd0 | |
parent | Add TODO.txt (diff) | |
download | autocento-26e1a84cbbf50330ce36724e6511edf40dea9548.tar.gz autocento-26e1a84cbbf50330ce36724e6511edf40dea9548.zip |
Update README
-rw-r--r-- | README.md | 68 |
1 files changed, 35 insertions, 33 deletions
diff --git a/README.md b/README.md index 91e57b3..0221591 100644 --- a/README.md +++ b/README.md | |||
@@ -1,47 +1,49 @@ | |||
1 | # Autocento of the breakfast table | 1 | Autocento of the breakfast table: a README |
2 | ## User guide and manual | 2 | ================================ |
3 | ## or whatever. I don't care. | ||
4 | 3 | ||
5 | # Part I: in which our hero explains the goal | 4 | Part I: in which our hero explains the goal |
5 | ------------------------------------------- | ||
6 | 6 | ||
7 | The goal in this book, *Autocento of the breakfast table*, is to explore the | 7 | The goal in this book, *Autocento of the breakfast table*, is to explore the workings of revision and recursion through words, both in the head and on paper. |
8 | workings of revision and recursion through words, both in the head and on | 8 | It's a hypertextual imagining of how things could have been, in all of their possibilities. |
9 | paper. It's a hypertextual imagining of how things could have been, in all | ||
10 | of their possibilities. | ||
11 | 9 | ||
12 | # Part II: Enough of that high-faluting bullshit; down to brass tax | 10 | Part II: How to use this repo |
13 | ## A.K.A. Using Pandoc to compile them pages, neff | 11 | ----------------------------- |
14 | 12 | ||
15 | This project uses John MacFarlane's amazing, etc. [pandoc][] for the fun, | 13 | This project uses John McFarlane's wonderful program [pandoc][], and its markdown flavor, to encode the poems and stories and things contained within. |
16 | HTML-writing stuff. Use the `compile.sh` script to compile the stuff down. | 14 | To see the source text files, navigate to the [src/](autocento.me/src/) folder. |
17 | 15 | ||
18 | *Note: you're on Windows right now, so make sure and type `bash compile.sh` to | 16 | At the top of each file, there is a YAML metadata block that looks something like this: |
19 | run the program.* | ||
20 | |||
21 | At the top of each file, there should be a YAML block that looks something | ||
22 | like this: | ||
23 | 17 | ||
24 | ````yaml | 18 | ````yaml |
25 | --- | 19 | --- |
26 | title: 'Title of poem' | 20 | title: Title of poem |
27 | subtitle: 'Subtitle' # optional | 21 | subtitle: Subtitle # optional |
28 | genre: '[verse|prose]' | 22 | genre: verse # verse or prose |
23 | |||
24 | epigraph: # optional | ||
25 | - content: 'Quote from outside' # req'd if epigraph exists | ||
26 | link: 'Link to online version of epigraph' # optional | ||
27 | attrib: 'Who said the epigraph' # optional | ||
28 | |||
29 | dedication: John Doe # optional | ||
29 | 30 | ||
30 | project: | 31 | project: |
31 | - title: 'Original project name' | 32 | title: Original project name |
32 | order: [number] | 33 | order: 1 # original project order |
33 | prev: | 34 | prev: |
34 | - title: 'Title of previous thing in original project' | 35 | - title: Title of previous thing in original project |
35 | link: 'link to that thing' | 36 | link: link to that thing |
36 | next: | 37 | - title: Title of other previous thing |
37 | - title: 'Title of next thing in original project' | 38 | link: link to that thing |
38 | - link: 'link to that thing' | 39 | next: |
39 | 40 | - title: Title of next thing in original project | |
40 | epigraph: # optional | 41 | link: link to that thing |
41 | - content: 'Quote from outside' | 42 | - title: Title of other next thing |
42 | link: 'Link to online version of epigraph' | 43 | link: link to that thing |
43 | attrib: 'Who said the epigraph' # optional | ||
44 | ... | 44 | ... |
45 | ```` | 45 | ```` |
46 | 46 | ||
47 | To compile all the markdown into glorious, glorious HTML (visible at <autocento.me>), run `compile.sh` (`bash compile.sh` in Windows) in the root directory of this git repository. | ||
48 | |||
47 | [pandoc]: http://johnmacfarlane.net/pandoc/ | 49 | [pandoc]: http://johnmacfarlane.net/pandoc/ |