about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-06-06 17:15:12 -0500
committerCase Duckworth2022-06-06 17:15:12 -0500
commitef274f1b7b52d5727293dd613d69cdec70ee9d37 (patch)
treed74c65ef850ed83bf7eb04c78b0742e6e0c353f6
parentAdd working on memorial day (diff)
parentAdd moved-in (diff)
downloadhat-trick-ef274f1b7b52d5727293dd613d69cdec70ee9d37.tar.gz
hat-trick-ef274f1b7b52d5727293dd613d69cdec70ee9d37.zip
Merge branch 'ht3'
-rw-r--r--asset/casa.css4
-rw-r--r--ht.txt176
-rwxr-xr-xht3.awk168
-rw-r--r--src/_foot.htm2
-rw-r--r--src/moved-in.ht44
5 files changed, 393 insertions, 1 deletions
diff --git a/asset/casa.css b/asset/casa.css index 47f496f..b607bf1 100644 --- a/asset/casa.css +++ b/asset/casa.css
@@ -31,6 +31,10 @@ footer {
31 padding: 1ch 0; 31 padding: 1ch 0;
32} 32}
33 33
34#back {
35 float: left;
36}
37
34code { 38code {
35 color: #c0ffee; 39 color: #c0ffee;
36} 40}
diff --git a/ht.txt b/ht.txt new file mode 100644 index 0000000..c409335 --- /dev/null +++ b/ht.txt
@@ -0,0 +1,176 @@
1# HAT TRICK
2
3HAT TRICK is both a lightweight markup language inspired by gemtext and html,
4and this awk program to convert the markup language to gemtext, html, and
5gophermap markup. It uses a mixture of "block"-level and line-level sigils to
6extend the pure line-based markup of gemtext, while removing some of the more
7annoying points (to my mind) of writing pure html---i.e., repetitive tags and
8other boilerplate.
9
10## Syntax
11
12### Blocks
13
14In HAT TRICK, block of text separated by a blank line is a type of "block." The
15default block is a paragraph, or <p> tag in html. (In gemini and gophermaps, no
16extra tags are added.) Other blocks defined by the syntax are as follows:
17
18>>>
19# HEADING 1
20## HEADING 2
21### HEADING 3
22<<<
23
24Correspond to <hx> in html; passed through unmodified to gemtext and gophermaps.
25
26>>>
27> BLOCK QUOTE
28<<<
29
30Corresponds to <blockquote>; passed through unmodified to gemtext and
31gophermaps.
32
33>>>
34- UNORDERED LIST ITEM
351. ORDERED LIST ITEM
36<<<
37
38The first list item in a block automatically opens the necessary list tag in
39html. In gemtext, the "-" is converted to "*" (which signifies a list item);
40the hyphen is passed through in gophermaps, because I think it's better syntax
41personally.
42
43>>>
44--- SECTION BREAK
45<<<
46
47A visual indication to break sections. Corresponds to <hr> in html
48(TODO: consider html5 <section> tags --- this would take more logic.)
49
50HAT TRICK reflows blocks, which means that only the first line of a block
51needs to start with the sigils outlined above. However, each line of the block
52can begin with the sigil character for easier reading.
53
54### Lines
55
56Within blocks, there are certain other sigils that apply only to the line they
57prepend. They include the following:
58
59>>>
60=> LINK
61<<<
62
63Links are probably the most important element in any hypertext language---since
64without them, it's hardly hypertext. HAT TRICK borrows its link syntax from
65gemtext: the line starts with a "=>", the next field is the link's URL, and the
66rest of the line is the link's display text.
67
68>>>
69<TAG> HTML TAG
70<<<
71
72Lines beginning with an html tag are passed on to html verbatim. The closing
73tag is automatically appended to the end of the line, before any ending
74punctuation. I've found that 99 times out of 100, I don't want formatting to
75include the ending punctuation.
76
77A backslash (\) at the end of the tag line will prevent the tag from being
78ended, which is useful for tag-included punctuation as well as nesting tags.
79However, the tag is never closed, so you'll have to close it yourself on the
80next line. In addition, text that isn't in a tag is html-escaped, so for the
81markup to properly apply, you'll need to write something like this:
82
83>>>
84<b>She sells \
85<i>sea shells \
86</i>
87on the sea shore.\
88</b>
89<<<
90
91So while this markup is possible, it's discouraged through the awkwardness of
92the syntax.
93
94To translate these tags to meaningful markup in gemtext and gophermaps, a lookup
95table is used to correspond the tags to opening and closing characters around
96the line's text. This correspondance can be defined with the environment
97variable HT_TAGCHARS or HAT TRICK's second positional argument (See INVOCATION,
98below).
99
100>>>
101; COMMENT
102<<<
103
104Comments in HAT TRICK aren't passed on to the output text---even in html, which
105has a comment syntax. Instead, comments are passed, including the prepending
106semicolon, to standard error for further processing.
107
108### Verbatim blocks
109
110Finally, there is a special type of block for passing raw text through to the
111next phase of processing: the verbatim block.
112
113>>>
114 >>> [OUTPUTS]
115 VERBATIM TEXT
116 <<<
117<<<
118
119In html, the verbatim text is wrapped in <pre><code> tags; in gemtext, it's
120wrapped in gemtext's own verbatim text markers ```; and the text is unwrapped in
121gophermaps for a cleaner look.
122
123The OUTPUTS can be any output specifier HAT TRICK accepts; see INVOCATION below
124for details. If OUTPUTS is present, the verbatim text will only be passed
125through in the output formats listed; with no OUTPUTS listed it will output to
126all formats.
127
128## "Escaping" line- and block-types
129
130Each of the types listed above are anchored at the beginning of the line.
131Therefore, a simple "escaping" mechanism is available for free: simply prepend a
132space to any line you don't want processed as a line or block and you'll be
133gravy. Astute readers will notice I did just that above, to describe the syntax
134for verbatim fencing.
135
136## Invocation
137
138An invocation of HAT TRICK will look something like this:
139
140>>>
141./ht.awk [HT_FORMATS] [HT_TAGCHARS] < INPUT
142<<<
143
144It processes text from standard input and uses two positional parameters to
145customize its usage, in addition to environment variables. In each instance,
146the parameter will override the variable, and if neither are provided, HAT TRICK
147will choose a default.
148
149### HT_FORMATS (default: "html")
150
151The format(s) to export to. Can be one or more of "html", "gemini", and
152"gopher". As a convenience, a format can be prepended with a "-" (i.e.,
153"-html"), in which case every other format will be exported to. Multiple
154formats can also be specified by separating them with a comma. The special
155keyword "all" will export to all formats (this is the default).
156
157If HAT TRICK exports to one format, it will simply print out each line
158translated into that format. However, if more than one format is given,
159HAT TRICK prints each line multiple times, prepending the name of the format to
160the output. This allows for further processing to filter outputs according to
161output type with just one pass through the input.
162
163### HT_TAGCHARS (default: 'b:**,i://,code:``')
164
165The correspondance between html tag lines and other output formats. If
166HT_FORMAT is only html, this option has no real meaning.
167
168Each correspondance is of the (exploded) form
169
170>>>
171TAG : LEFT_CHAR RIGHT_CHAR
172<<<
173
174where TAG is the html tag, LEFT_CHAR is the character on the left of the
175enclosed text, and RIGHT_CHAR is the character on the right. Rules can be
176separated by commas to pass multiple ones to HAT TRICK.
diff --git a/ht3.awk b/ht3.awk new file mode 100755 index 0000000..996cb1a --- /dev/null +++ b/ht3.awk
@@ -0,0 +1,168 @@
1#!/usr/bin/awk -f
2# -*- indent-tabs-mode: t; -*-
3# HAT TRICK
4# (C) 2022 C. Duckworth
5
6### Commentary:
7
8### Code:
9BEGIN {
10 split("html,gemini,gopher", HT_FORMATS_AVAILABLE, ",")
11 process_arguments()
12 normalize_ht_formats()
13 if (! HT_TAGCHARS[1]) {
14 split("b:**,i://,code:``", HT_TAGCHARS, ",")
15 }
16 # Output buffer. The output will be chunked into blocks.
17 BUFFER = ""
18 # The current block type. We start with a standard paragraph.
19 BLOCK = "p"
20}
21
22### RAW TEXT
23/^>>>/ {
24}
25
26/^<<</ {
27}
28
29### BLOCKS
30/^#+/ { # Headers
31}
32
33/^>/ { # Block quote
34}
35
36/^-/ { # Unordered list
37}
38
39/^[0-9]\./ { # Ordered list
40}
41
42/^---$/ { # Section break
43}
44
45### LINES
46/^=>/ { # Link
47}
48
49/^</ { # HTML tag
50}
51
52/^;/ { # Comment
53}
54
55### EVERYTHING ELSE
56{
57}
58
59### FINISH
60END {
61 buflush()
62}
63
64### FUNCTIONS
65function buflush()
66{
67 # Print the buffer and close the current block.
68 if (BUFFER) {
69 ht_print(BUFFER)
70 }
71 BUFFER = ""
72 if ("html" in HT_FORMATS && BLOCK != "raw") {
73 ht_print("</" BLOCK ">")
74 }
75 print
76}
77
78function bufpush(str)
79{
80 # Push STR onto the buffer after a newline.
81 BUFFER = BUFFER (BUFFER ? "\n" : "") str
82}
83
84function ht_print(str)
85{
86 if (HT_FORMATS_COUNT == 1) {
87 print str
88 } else {
89 split(str, arr, "\n")
90 for (format in HT_FORMATS) {
91 line = 1
92 while (arr[line]) {
93 printf "%s\t%s\n", format, arr[line++]
94 }
95 }
96 }
97}
98
99function html_escape(str)
100{
101 # Escape HTML entities and beginning-line spaces.
102 gsub(/&/, "\\&amp;", t)
103 gsub(/</, "\\&lt;", t)
104 gsub(/>/, "\\&gt;", t)
105 sub(/^ /, "\\&nbsp;", t)
106 return t
107}
108
109function normalize_ht_formats()
110{
111 for (format in HT_FORMATS_AVAILABLE) {
112 normat[format] = 0
113 }
114 if (! HT_FORMATS[1]) {
115 for (i in HT_FORMATS_AVAILABLE) {
116 HT_FORMATS[i] = HT_FORMATS_AVAILABLE[i]
117 }
118 }
119 for (format in HT_FORMATS) {
120 if (format == "all") {
121 for (i in HT_FORMATS_AVAILABLE) {
122 HT_FORMATS[i] = HT_FORMATS_AVAILABLE[i]
123 }
124 return
125 } else if (format ~ /^-/) {
126 delete normat[substr(format, 2)]
127 } else {
128 normat[format] = 1
129 }
130 }
131 for (format in normat) {
132 if (normat[format]) {
133 HT_FORMATS[format] = format
134 }
135 }
136 for (format in HT_FORMATS) {
137 HT_FORMATS_COUNT++
138 }
139}
140
141function process_arguments()
142{
143 a = 1
144 HT_FORMATS[1] = 0
145 HT_TAGCHARS[1] = 0
146 while (ARGV[a]) {
147 if (a == "-c" || a ~ /^--chars=/) {
148 # HTML tag <-> markup character correspondance
149 if (a == "-c") {
150 a++
151 } else if (a ~ /^--chars=/) {
152 sub(/^[^=]*=/, "", a)
153 # HT_TAGCHARS is an array
154 }
155 split(a, HT_TAGCHARS, ",")
156 } else if (a == "-f" || a ~ /^--format=/) {
157 # Output format
158 if (a == "-f") {
159 a++
160 } else if (a ~ /^--format=/) {
161 sub(/^[^=]*=/, "", a)
162 # HT_FORMATS is an array
163 }
164 split(a, HT_FORMATS, ",")
165 }
166 a++
167 }
168}
diff --git a/src/_foot.htm b/src/_foot.htm index 8e1ee54..2cbd5a0 100644 --- a/src/_foot.htm +++ b/src/_foot.htm
@@ -1,5 +1,5 @@
1<footer> 1<footer>
2 $(case "$(title)" in ("") ;; (*) print "<a href=\"./index.html\">back</a>" ;; esac) 2 $(case "$(title)" in ("") ;; (*) print "<a id="back" href=\"./index.html\">back</a>" ;; esac)
3 <span id="copyright">(C) 2022 3 <span id="copyright">(C) 2022
4 $(if [ $(command date +%Y) -gt 2022 ]; then print "&ndash; $(command date +%Y)"; fi) 4 $(if [ $(command date +%Y) -gt 2022 ]; then print "&ndash; $(command date +%Y)"; fi)
5 C. Duckworth</span> under the 5 C. Duckworth</span> under the
diff --git a/src/moved-in.ht b/src/moved-in.ht new file mode 100644 index 0000000..27d1555 --- /dev/null +++ b/src/moved-in.ht
@@ -0,0 +1,44 @@
1;@@title: moved in@@
2;@@date: 2022-06-06@@
3
4moved into my new house last week! very nice house. i was sick for two days
5afterward, i think due to exhaustion or something. wasn't a good time, let me
6tell you. however, now i'm well and kicking!
7
8my wife's birthday was also this weekend, so we had friends over and everyone
9loved the house. i do too. it's a good house.
10
11oh and the
12=> https://dogs.acdw.net dogs
13are back home, thank goodness! i was missing them very much. they are
14adjusting well, mostly---though apparently the poor things were terrified by the
15mail dropping through the door slot this afternoon.
16
17<hr>
18
19i was originally writing this to share a bit of elisp, so i suppose i will here.
20
21Bozhidar Batsov wrote a blog post called
22=>
23https://emacsredux.com/blog/2022/06/03/extract-version-metadata-from-a-package/
24"Extract Version Metadata from a Package"
25that discusses how to do all of that from package.el, but i don't use
26package.el.
27
28so i hacked something together from some throwaway lines in his blog to do
29almost the same thing:
30
31```
32(with-current-buffer (find-file-noselect (find-library-name "titlecase"))
33 (require 'lisp-mnt)
34 (lm-authors))
35```
36
37this returns the authors (me) and their email from the titlecase.el library:
38
39```
40(("Case Duckworth" . "acdw@acdw.net"))
41```
42
43i still need to think about multi-file libraries and how to find the "real" root
44of the library, i suppose, but that's an easily-enough-solved problem i think.