about summary refs log tree commit diff stats
path: root/process.html
diff options
context:
space:
mode:
authorCase Duckworth2015-04-01 23:16:18 -0700
committerCase Duckworth2015-04-01 23:20:18 -0700
commitd161be120c22faf222ec15ca618ee367e4d56575 (patch)
treeb945633e680e5682a967f63bad88a2b262b4d4c6 /process.html
parentMerge branch 'gh-pages' of https://github.com/duckwork/autocento into gh-pages (diff)
downloadautocento-d161be120c22faf222ec15ca618ee367e4d56575.tar.gz
autocento-d161be120c22faf222ec15ca618ee367e4d56575.zip
Refactor makefile; Add hapax preprocessor
Diffstat (limited to 'process.html')
-rw-r--r--process.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/process.html b/process.html index 2246863..9b2aab0 100644 --- a/process.html +++ b/process.html
@@ -21,7 +21,7 @@
21 <![endif]--> 21 <![endif]-->
22 </head> 22 </head>
23<body id="process" class="meta"> 23<body id="process" class="meta">
24 24
25 25
26 <article class="container"> 26 <article class="container">
27 <header> 27 <header>
@@ -30,11 +30,11 @@
30 <h1 class="subtitle">process narrative</h1> 30 <h1 class="subtitle">process narrative</h1>
31 31
32 <div class="header-extra"> 32 <div class="header-extra">
33 33
34 </div> 34 </div>
35 </header> 35 </header>
36 36
37 37
38 <section class="content prose"> 38 <section class="content prose">
39 <section id="hi.-my-name-is-case-duckworth.-this-is-my-thesis." class="level2"> 39 <section id="hi.-my-name-is-case-duckworth.-this-is-my-thesis." class="level2">
40 <h2>Hi. My name is Case Duckworth. This is my thesis.</h2> 40 <h2>Hi. My name is Case Duckworth. This is my thesis.</h2>
@@ -54,9 +54,9 @@
54 <ul> 54 <ul>
55 <li><p>At first, I used this code in the shell to generate my HTML:</p> 55 <li><p>At first, I used this code in the shell to generate my HTML:</p>
56 <pre class="sourceCode bash"><code class="sourceCode bash"><span class="kw">for</span> <span class="kw">file</span> in *.txt<span class="kw">;</span> <span class="kw">do</span> 56 <pre class="sourceCode bash"><code class="sourceCode bash"><span class="kw">for</span> <span class="kw">file</span> in *.txt<span class="kw">;</span> <span class="kw">do</span>
57 <span class="kw">pandoc</span> <span class="st">&quot;</span><span class="ot">$file</span><span class="st">&quot;</span> -f markdown -t html5 \ 57 <span class="kw">pandoc</span> <span class="st">&quot;</span><span class="ot">$file</span><span class="st">&quot;</span> -f markdown -t html5 \
58 --template=template.html -o <span class="st">&quot;</span><span class="ot">${file%</span>txt<span class="ot">}</span><span class="st">html&quot;</span> 58 --template=template.html -o <span class="st">&quot;</span><span class="ot">${file%</span>txt<span class="ot">}</span><span class="st">html&quot;</span>
59<span class="kw">done</span></code></pre> 59 <span class="kw">done</span></code></pre>
60 but this proved tedious with time.</li> 60 but this proved tedious with time.</li>
61 <li>After a lot of experimenting with different scripting languages, I finally realized that <a href="https://www.gnu.org/software/make/manual/make.html"><code>GNU make</code></a> would fit this task perfectly.</li> 61 <li>After a lot of experimenting with different scripting languages, I finally realized that <a href="https://www.gnu.org/software/make/manual/make.html"><code>GNU make</code></a> would fit this task perfectly.</li>
62 <li>You can see my makefile <a href="https://github.com/duckwork/autocento/blob/gh-pages/makefile">here</a>—it’s kind of a mess, but it does the job. See below for a more detailed explanation of the makefile.</li> 62 <li>You can see my makefile <a href="https://github.com/duckwork/autocento/blob/gh-pages/makefile">here</a>—it’s kind of a mess, but it does the job. See below for a more detailed explanation of the makefile.</li>
@@ -97,7 +97,7 @@
97 </section> 97 </section>
98 </article> 98 </article>
99 <nav> 99 <nav>
100 100
101 <!-- ANCHORS --> 101 <!-- ANCHORS -->
102 <div class="anchors"> 102 <div class="anchors">
103 <a href="process_backlinks.htm" id="back-link" title="Links to this page"> 103 <a href="process_backlinks.htm" id="back-link" title="Links to this page">
@@ -109,6 +109,6 @@
109 109
110 </nav> 110 </nav>
111 111
112 112
113</body> 113</body>
114</html> 114</html>