diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/README.md b/README.md index b03d323..91e57b3 100644 --- a/README.md +++ b/README.md | |||
@@ -23,13 +23,24 @@ like this: | |||
23 | 23 | ||
24 | ````yaml | 24 | ````yaml |
25 | --- | 25 | --- |
26 | title: 'Title of poem or whatever' | 26 | title: 'Title of poem' |
27 | subtitle: 'Subtitle, if it exists' | 27 | subtitle: 'Subtitle' # optional |
28 | epigraph: 'Include epigraph here, if it exists' | 28 | genre: '[verse|prose]' |
29 | epigraph-link: 'Link for the epigraph online (required)' | 29 | |
30 | epigraph-credit: 'Credit for epigraph (optional)' | 30 | project: |
31 | project: 'Original project here' | 31 | - title: 'Original project name' |
32 | genre: 'Genre of file: [verse|prose]' | 32 | order: [number] |
33 | prev: | ||
34 | - title: 'Title of previous thing in original project' | ||
35 | link: 'link to that thing' | ||
36 | next: | ||
37 | - title: 'Title of next thing in original project' | ||
38 | - link: 'link to that thing' | ||
39 | |||
40 | epigraph: # optional | ||
41 | - content: 'Quote from outside' | ||
42 | link: 'Link to online version of epigraph' | ||
43 | attrib: 'Who said the epigraph' # optional | ||
33 | ... | 44 | ... |
34 | ```` | 45 | ```` |
35 | 46 | ||