blob: abcef0df4d2771f1afd85f5eee8ac42e680c30cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>This is a `test` page!</title>
<link rel="shortcut icon" type="image/gif" href="/favicon.ico" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="style-override.css" />
</head>
<body>
<h1>This is a <span class="inlinecode">test</span> page!</h1>
<p class="quote"><i>A <span class="inlinecode">test</span> page this is!</i></p>
<p> Gefallen <span class="inlinecode">eigentum</span> schuppen so ei feinheit. Gegen er kinde kenne mu se. Im zu sauber labsal werden en heraus sterne mu. Trostlos der das streckte gefallts ins tag begierig. Gebrauch eleonora horchend gedanken als ich befehlen. Geschirr manchmal an spateren hinunter es sichtbar er ri einander. Herkommen betrubtes einfacher es so am kreiselnd verwegene schnupfen. </p>
<h2>Header 2 jo <span class="inlinecode">yay</span> jo</h2>
<p>So argerlich gewachsen lohgruben lieblinge schranken an. Reinlich richtete hinunter einander herunter sog fur bezahlen den. Du stimme kohlen besser du. Im fu kiste en steht sagst zu sitte. Sog igen trug das noch. Barbieren schnupfen gescheite wu en. Ubelnehmen kindlichen des sog hoffnungen vom und aufgespart. </p>
<h3>Header 3 jo <span class="inlinecode">yay</span> jo</h3>
<p>Dessen mag lehren lassig der leuten. Wu wangen du husten da schlie ku gebaut. Fingern stunden lauernd schonen sonntag sie auf. Am hell lust habs in wohl sein kerl. Mudigkeit schreibet gar einfacher ehe schonheit. Feierabend dazwischen pa wahrhaftig launischen im es in. Ri em im drechslers wohnzimmer so messingnen nachmittag verrichtet vergnugter. Nachmittag werkstatte tag scherzwort bin uns verrichtet frohlicher ihm bescheiden. </p>
<p> * Entry 1 jo <span class="inlinecode">yay</span> jo</p>
<p> * Entry 2 jo <span class="inlinecode">yay</span> jo</p>
<p> * Entry 3 jo <span class="inlinecode">yay</span> jo</p>
<!-- Generator: GNU source-highlight 3.1.9
by Lorenzo Bettini
http://www.lorenzobettini.it
http://www.gnu.org/software/src-highlite -->
<pre><i><font color="#9A1900">#!/usr/bin/env bash</font></i>
<i><font color="#9A1900">#</font></i>
<i><font color="#9A1900"># The Gemtexter blog engine and static site generator</font></i>
<i><font color="#9A1900"># by Paul Buetow 2021, 2022, 2023</font></i>
<b><font color="#0000FF">declare</font></b> -r <font color="#009900">ARG</font><font color="#990000">=</font><font color="#FF0000">"$1"</font><font color="#990000">;</font> <b><font color="#0000FF">shift</font></b>
<b><font color="#0000FF">declare</font></b> <font color="#009900">CONTENT_FILTER</font><font color="#990000">=</font><font color="#FF0000">"$1"</font><font color="#990000">;</font> <b><font color="#0000FF">shift</font></b>
<b><font color="#0000FF">declare</font></b> -r <font color="#009900">VERSION</font><font color="#990000">=</font><font color="#993399">2.0</font><font color="#990000">.</font><font color="#993399">1</font>
<b><font color="#0000FF">declare</font></b> -r <font color="#009900">VERSION_DESCR</font><font color="#990000">=</font>bugfix
<b><font color="#0000FF">declare</font></b> -r <font color="#009900">DATE_FORMAT</font><font color="#990000">=</font><font color="#FF0000">'--iso-8601=seconds'</font>
<b><font color="#0000FF">declare</font></b> <font color="#009900">DATE</font><font color="#990000">=</font>date
<b><font color="#0000FF">declare</font></b> <font color="#009900">SED</font><font color="#990000">=</font>sed
<b><font color="#0000FF">declare</font></b> <font color="#009900">GREP</font><font color="#990000">=</font>grep
<b><font color="#0000FF">declare</font></b> <font color="#009900">XMLLINT</font><font color="#990000">=</font><font color="#FF0000">''</font>
which gdate <font color="#990000">&></font>/dev/null <font color="#990000">&&</font> <font color="#009900">DATE</font><font color="#990000">=</font>gdate
which gsed <font color="#990000">&></font>/dev/null <font color="#990000">&&</font> <font color="#009900">SED</font><font color="#990000">=</font>gsed
which ggrep <font color="#990000">&></font>/dev/null <font color="#990000">&&</font> <font color="#009900">GREP</font><font color="#990000">=</font>ggrep
<b><font color="#0000FF">readonly</font></b> DATE
<b><font color="#0000FF">readonly</font></b> SED
<b><font color="#0000FF">readonly</font></b> GREP
<i><font color="#9A1900"># Set unset variables to make 'set -u' work, they can optionally be passed as</font></i>
<i><font color="#9A1900"># enviroments to Gemtexter</font></i>
<b><font color="#0000FF">test</font></b> -z <font color="#FF0000">"$CONFIG_FILE_PATH"</font> <font color="#990000">&&</font> <font color="#009900">CONFIG_FILE_PATH</font><font color="#990000">=</font><font color="#FF0000">''</font>
<b><font color="#0000FF">test</font></b> -z <font color="#FF0000">"$GIT_COMMIT_MESSAGE"</font> <font color="#990000">&&</font> <font color="#009900">GIT_COMMIT_MESSAGE</font><font color="#990000">=</font><font color="#FF0000">''</font>
<b><font color="#0000FF">test</font></b> -z <font color="#FF0000">"$LOG_VERBOSE"</font> <font color="#990000">&&</font> <font color="#009900">LOG_VERBOSE</font><font color="#990000">=</font><font color="#FF0000">''</font>
<b><font color="#0000FF">test</font></b> -z <font color="#FF0000">"$PRE_GENERATE_HOOK"</font> <font color="#990000">&&</font> <font color="#009900">PRE_GENERATE_HOOK</font><font color="#990000">=</font><font color="#FF0000">''</font>
<b><font color="#0000FF">test</font></b> -z <font color="#FF0000">"$POST_PUBLISH_HOOK"</font> <font color="#990000">&&</font> <font color="#009900">POST_PUBLISH_HOOK</font><font color="#990000">=</font><font color="#FF0000">''</font>
<b><font color="#0000FF">set</font></b> -euf -o pipefail
</pre>
<a class="textlink" href="https://foo.zone">https://foo.zone</a><br />
<a class="textlink" href="https://foo.zone">link</a><br />
<a class="textlink" href="https://foo.zone">link jo <span class="inlinecode">yay</span> jo</a><br />
<pre>
foo bar
bar
bar baz
</pre>
<p>Foo0</p>
<p>Bar0</p>
<p>Foo1</p>
<p>Bar1</p>
<p>Foo2</p>
<p>Bar2</p>
<h3>OK</h3>
<p>ok</p>
<p class="footer">
Generated with <a href="https://codeberg.org/snonux/gemtexter">Gemtexter</a> |
served by <a href="https://www.OpenBSD.org">OpenBSD</a>/<a href="https://man.openbsd.org/httpd.8">httpd(8)</a> |
<a href="https://www.foo.zone/site-mirrors.html">Site Mirrors</a>
</p>
</body>
</html>
|