about summary refs log tree commit diff stats
path: root/process.river
diff options
context:
space:
mode:
Diffstat (limited to 'process.river')
-rw-r--r--process.river516
1 files changed, 0 insertions, 516 deletions
diff --git a/process.river b/process.river deleted file mode 100644 index 196d5f7..0000000 --- a/process.river +++ /dev/null
@@ -1,516 +0,0 @@
1hi
2my
3name
4is
5case
6duckworth
7this
8is
9my
10thesis
11autocento
12of
13the
14breakfast
15table
16is
17an
18inter/hypertextual
19exploration
20of
21the
22workings
23of
24inspiration
25revision
26and
27obsession
28i've
29compiled
30this
31work
32over
33multiple
34years
35and
36recently
37linked
38it
39all
40together
41to
42form
43a
44hopefully
45more
46cohesive
47whole
48to
49make
50this
51easier
52than
53collating
54everything
55by
56hand
57i've
58relied
59on
60a
61process
62that
63leverages
64open-source
65technologies
66to
67publish
68my
69work
70onto
71a
72web
73platform
74process
75steps
76write
77poems
78convert
79to
80markdown
81markdown
82originally
83by
84john
85gruber
86is
87a
88lightweight
89markup
90language
91that
92allows
93me
94to
95focus
96on
97the
98content
99of
100my
101writing
102knowing
103that
104i
105can
106work
107on
108the
109presentation
110later
111the
112original
113markdown
114pl
115program
116is
117buggy
118and
119inconsistent
120with
121how
122it
123applies
124styles
125to
126markup
127it
128also
129only
130works
131to
132convert
133text
134to
135html
136because
137of
138these
139limitations
140i've
141used
142john
143macfarlane's
144extended
145markdown
146syntax
147which
148lets
149me
150write
151richer
152documents
153and
154programmatically
155compile
156my
157work
158into
159multiple
160formats
161compile
162to
163html
164with
165pandoc
166at
167first
168i
169used
170this
171code
172in
173the
174shell
175to
176generate
177my
178html
179bash
180for
181file
182in
183txt
184do
185pandoc
186file
187-f
188markdown
189-t
190html5
191template
192template
193html
194-o
195file
196txt
197html
198done
199but
200this
201proved
202tedious
203with
204time
205after
206a
207lot
208of
209experimenting
210with
211different
212scripting
213languages
214i
215finally
216realized
217that
218gnu
219make
220would
221fit
222this
223task
224perfectly
225you
226can
227see
228my
229makefile
230here
231it
232is
233kind
234of
235a
236mess
237but
238it
239does
240the
241job
242see
243below
244for
245a
246more
247detailed
248explanation
249of
250the
251makefile
252style
253the
254pages
255with
256css
257i
258use
259a
260pretty
261basic
262style
263for
264autocento
265you
266can
267see
268my
269stylesheet
270here
271use
272github
273to
274put
275them
276online
277github
278uses
279git
280under
281the
282hood
283a
284version
285control
286system
287developed
288for
289keeping
290track
291of
292large
293code
294projects
295my
296workflow
297with
298git
299looks
300like
301this
302change
303files
304in
305the
306project
307directory
308revise
309a
310poem
311change
312the
313makefile
314add
315a
316style
317etc
318if
319necessary
320re-compile
321with
322make
323git
324status
325tells
326me
327which
328files
329have
330changed
331which
332have
333been
334added
335and
336if
337any
338have
339been
340deleted
341git
342add
343-a
344adds
345all
346the
347changes
348to
349the
350staging
351area
352or
353i
354can
355add
356individual
357files
358depending
359on
360what
361i
362want
363to
364commit
365git
366commit
367-m
368message
369commits
370the
371changes
372to
373git
374this
375means
376they're
377saved
378if
379i
380do
381something
382i
383want
384to
385revert
386i
387can
388git
389revert
390back
391to
392a
393commit
394and
395start
396again
397git
398push
399pushes
400the
401changes
402to
403the
404remote
405repository
406in
407this
408case
409the
410github
411repo
412that
413serves
414http
415//autocento
416me
417lather
418rinse
419repeat
420write
421makefile
422to
423extend
424build
425capabilities
426as
427of
428now
429i've
430completed
431a
432hapax
433legomenon
434compiler
435a
436back-link
437compiler
438and
439an
440updater
441for
442the
443random
444link
445functionality
446that's
447on
448this
449site
450i'd
451like
452to
453build
454a
455compiler
456for
457the
458index
459of
460first
461lines
462and
463index
464of
465common
466titles
467once
468i
469have
470time
471the
472beauty
473of
474this
475system
476i
477can
478compile
479these
480poems
481into
482almost
483any
484format
485pandoc
486supports
487a
488lot
489once
490i
491complete
492the
493above
494process
495once
496i
497can
498focus
499on
500revising
501my
502poems
503these
504poems
505are
506online
507for
508anyone
509to
510see
511and
512use
513for
514their
515own
516work