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.river464
1 files changed, 410 insertions, 54 deletions
diff --git a/process.river b/process.river index df1e8b6..196d5f7 100644 --- a/process.river +++ b/process.river
@@ -1,4 +1,3 @@
1outline
2hi 1hi
3my 2my
4name 3name
@@ -9,6 +8,69 @@ this
9is 8is
10my 9my
11thesis 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
12process 74process
13steps 75steps
14write 76write
@@ -16,101 +78,396 @@ poems
16convert 78convert
17to 79to
18markdown 80markdown
19generally 81markdown
20easy 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
21compile 161compile
22to 162to
23html 163html
24with 164with
25pandoc 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
26style 252style
27the 253the
28pages 254pages
29with 255with
30css 256css
257i
258use
259a
260pretty
261basic
262style
263for
264autocento
265you
266can
267see
268my
269stylesheet
270here
31use 271use
32github 272github
33to 273to
34put 274put
35them 275them
36online 276online
277github
278uses
37git 279git
38has 280under
39been 281the
40used 282hood
41throughout
42to
43keep
44track
45of
46changes
47it
48is
49a 283a
50version 284version
51control 285control
52system 286system
53usually 287developed
54used
55for 288for
289keeping
290track
291of
292large
56code 293code
57but 294projects
58adapted 295my
59for 296workflow
60creative 297with
61writing 298git
62write 299looks
63makefile 300like
64for 301this
65ease-of-compilation 302change
303files
304in
305the
306project
307directory
308revise
66a 309a
310poem
311change
312the
67makefile 313makefile
68is 314add
69a 315a
70collection 316style
71of 317etc
72instructions 318if
73to 319necessary
320re-compile
321with
74make 322make
75that 323git
324status
76tells 325tells
77it 326me
78how 327which
328files
329have
330changed
331which
332have
333been
334added
335and
336if
337any
338have
339been
340deleted
341git
342add
343-a
344adds
345all
346the
347changes
79to 348to
80compile 349the
81a 350staging
82set 351area
83of 352or
353i
354can
355add
356individual
84files 357files
85it 358depending
86is 359on
87made 360what
361i
362want
363to
364commit
365git
366commit
367-m
368message
369commits
88the 370the
89other 371changes
90parts 372to
91of 373git
92this 374this
93much 375means
94easier 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
95write 420write
421makefile
422to
423extend
424build
425capabilities
426as
427of
428now
429i've
430completed
431a
96hapax 432hapax
97legomenon 433legomenon
98compiler 434compiler
99write 435a
436back-link
100compiler 437compiler
438and
439an
440updater
101for 441for
102backlinks 442the
103todo 443random
104write 444link
445functionality
446that's
447on
448this
449site
450i'd
451like
452to
453build
454a
105compiler 455compiler
106for 456for
457the
107index 458index
108of 459of
109first 460first
110lines 461lines
111and 462and
463index
464of
112common 465common
113titles 466titles
467once
468i
469have
470time
114the 471the
115beauty 472beauty
116of 473of
@@ -152,9 +509,8 @@ anyone
152to 509to
153see 510see
154and 511and
512use
513for
514their
515own
155work 516work
156off
157of
158something
159something
160intertextuality