aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-06-07 10:27:38 -0400
committerBradley Taunt <bt@btxx.org>2024-06-07 10:27:38 -0400
commit8a3e4e5207f59d42bfd6075e3792267266c86e71 (patch)
treef54d760781244072ff66564b011fef18dbf4a3de
parent8c47200dd81639b7cb1a3a165f4bb2eec2517970 (diff)
Homepage changes, README updates, swap to lowdown, cleanup
-rw-r--r--README.md34
-rwxr-xr-xbarf2
-rw-r--r--build/about/index.html12
-rw-r--r--build/atom.xml254
-rw-r--r--build/cleanup/index.html12
-rw-r--r--build/dark-mode/index.html15
-rw-r--r--build/index.html47
-rw-r--r--build/macos/index.html8
-rw-r--r--build/markdown-examples/index.html205
-rw-r--r--build/openbsd/index.html8
-rw-r--r--build/qol/index.html12
-rw-r--r--build/rss.xml254
-rw-r--r--build/websites/index.html4
-rw-r--r--header.html2
-rw-r--r--index.md26
-rw-r--r--posts/markdown-examples.md8
-rw-r--r--posts/qol.md4
17 files changed, 445 insertions, 462 deletions
diff --git a/README.md b/README.md
index ada76ca..6fedcb2 100644
--- a/README.md
+++ b/README.md
@@ -3,12 +3,11 @@ barf
barf is an extremely minimal blog generator.
-The entire build script is less than 100 lines of shell.
+The entire build script is >170 lines of shell.
It could *almost* be called "suckless", but probably isn't.
-(barf is a modified/forked version of Karl Bartel's fantastic blog.sh
-(https://github.com/karlb/karl.berlin). Be sure to check it out since
+(barf is a modified/forked version of Karl Bartel's fantastic [blog.sh](https://github.com/karlb/karl.berlin). Be sure to check it out since
my version does things slightly different.)
You can see a [live demo here](https://barf.btxx.org)
@@ -39,10 +38,14 @@ linux
-----
- rsync
-- smu (see below)
+- lowdown
- entr (optonal)
- standard UNIX tools
+Example on Alpine:
+
+ sudo apk add rsync lowdown
+
openbsd
-------
@@ -53,10 +56,12 @@ https://barf.btxx.org/openbsd
- gcc
- cmake
- rsync
+- lowdown
- gsed
-- smu (see below)
- entr (optional)
+ doas pkg_add coreutils gcc cmake rsync lowdown gsed
+
macOS
-----
@@ -66,9 +71,11 @@ https://barf.btxx.org/macos
- coreutils
- gnu-sed
- rsync
-- smu (see below)
+- lowdown
- entr (optional)
+ brew install coreutils gnu-sed rsync lowdown
+
basic setup
-----------
@@ -77,14 +84,7 @@ and "footer.html" files with your own information, navigation, etc.
Be sure to edit the **domain** variable inside `barf` or else your feed won't validate!
-Then, clone and build my patched version of smu:
-
- git clone https://git.btxx.org/smu
- cd smu
- # OpenBSD users: change sudo to doas
- sudo make install
-
-Then clone this directory and build:
+Then build:
make build
@@ -155,11 +155,11 @@ or even speed things up are more than welcome!
## Can I use other Markdown parsers?
-Of course! Simply edit the main `barf` script and swap out `smu` with
+Of course! Simply edit the main `barf` script and swap out `lowdown` with
something else. I wouldn't advise doing this if you already have pre-existing
-content based-off `smu`, since this could break some of your pages.
+content based-off `lowdown`, since this could break some of your pages.
-But give smu (https://git.btxx.org/smu) a try - it is very lightweight and fast!
+But give `lowdown` a try - it is very lightweight and fast!
MORE FAQs TO COME...
diff --git a/barf b/barf
index 47ba095..10a92ca 100755
--- a/barf
+++ b/barf
@@ -14,7 +14,7 @@ elif [ "$os_name" = "Darwin" ]; then
fi
set -eu
-MARKDOWN=smu
+MARKDOWN=lowdown
IFS=' '
# Create tab separated file with filename, title, creation date, last update
diff --git a/build/about/index.html b/build/about/index.html
index fac6c41..698aa5c 100644
--- a/build/about/index.html
+++ b/build/about/index.html
@@ -7,7 +7,7 @@
<title>About `barf`</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}</style>
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}.footnotes{font-size:90%;}</style>
</head>
<nav>
@@ -15,11 +15,11 @@
</nav>
<main>
-<h1>About <code>barf</code></h1>
-<p>barf is a minimal and suckless-inspired blog generator. It is a tweaked and slightly patched version of Karl Bartel's fantastic <a href="https://github.com/karlb/karl.berlin">blog.sh</a>.</p>
-<h2>Why?</h2>
-<p>This project was created by me, <a href="https://btxx.org">Bradley Taunt</a>, out of frustration with overly complex and bloated blogging options. I tried <em>so many</em> "minimal" generators but each one ended up having some glaring issue or heavy reliance on dependencies. </p>
-<p>I wanted to have a system that I could easily replicate on any Linux machine. Something that didn't require me to download half the internet just to get up and running. I'm a sucker for keeping things simple.</p>
+<h1 id="about-">About <code>barf</code></h1>
+<p>barf is a minimal and suckless-inspired blog generator. It is a tweaked and slightly patched version of Karl Bartel&#8217;s fantastic <a href="https://github.com/karlb/karl.berlin">blog.sh</a>.</p>
+<h2 id="why">Why?</h2>
+<p>This project was created by me, <a href="https://btxx.org">Bradley Taunt</a>, out of frustration with overly complex and bloated blogging options. I tried <em>so many</em> &#8220;minimal&#8221; generators but each one ended up having some glaring issue or heavy reliance on dependencies. </p>
+<p>I wanted to have a system that I could easily replicate on any Linux machine. Something that didn&#8217;t require me to download half the internet just to get up and running. I&#8217;m a sucker for keeping things simple.</p>
<footer role="contentinfo">
<hr>
<h3 id="menu">Menu Navigation</h3>
diff --git a/build/atom.xml b/build/atom.xml
index 8b1b84d..145d5a8 100644
--- a/build/atom.xml
+++ b/build/atom.xml
@@ -2,16 +2,16 @@
<feed xmlns="http://www.w3.org/2005/Atom">
<title>barf</title>
<link href="https://barf.btxx.org/atom.xml" rel="self" />
- <updated>2024-06-06T10:08:02Z</updated>
+ <updated>2024-06-07T10:26:51Z</updated>
<author>
- <name></name>
+ <name>Bradley Taunt</name>
</author>
<id>https://barf.btxx.org,2024-01-19:default-atom-feed/</id>
<entry>
<title>Quality of Life Improvements</title>
- <content type="html">&lt;h1&gt;Quality of Life Improvements&lt;/h1&gt;
+ <content type="html">&lt;h1 id=&quot;quality-of-life-improvements&quot;&gt;Quality of Life Improvements&lt;/h1&gt;
&lt;p&gt;2024-06-06&lt;/p&gt;
-&lt;p&gt;I haven&#39;t circled back to &lt;code&gt;barf&lt;/code&gt; in quite a bit of time, so I&#39;m happy to announce a small update mainly focused on quality of life improvements! I&#39;ll keep things brief and get right into the core changes:&lt;/p&gt;
+&lt;p&gt;I haven&amp;#8217;t circled back to &lt;code&gt;barf&lt;/code&gt; in quite a bit of time, so I&amp;#8217;m happy to announce a small update mainly focused on quality of life improvements! I&amp;#8217;ll keep things brief and get right into the core changes:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Automatic detection of your operating system (supports Linux, macOS and OpenBSD currently)&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;barf&lt;/code&gt; now checks your current OS and sets aliases accordingly&lt;/li&gt;
@@ -25,7 +25,11 @@
&lt;ul&gt;
&lt;li&gt;You now only need to set your main domain at the top of the core &lt;code&gt;barf&lt;/code&gt; file.&lt;/li&gt;
&lt;/ul&gt;
-&lt;p&gt;That&#39;s it really! I&#39;ve also updated the original blog posts about setting up &lt;code&gt;barf&lt;/code&gt; on macOS and OpenBSD to reflect these changes.&lt;/p&gt;
+&lt;p&gt;&lt;strong&gt;Swapped out &lt;code&gt;smu&lt;/code&gt; for &lt;code&gt;lowdown&lt;/code&gt;&lt;/strong&gt;&lt;/p&gt;
+&lt;ul&gt;
+&lt;li&gt;The default Markdown parser is now set to &lt;code&gt;lowdown&lt;/code&gt;. The original parser (&lt;code&gt;smu&lt;/code&gt;) is great, but I wanted to make the project simpler by avoiding users to clone and build a separate package.&lt;/li&gt;
+&lt;/ul&gt;
+&lt;p&gt;That&amp;#8217;s it really! I&amp;#8217;ve also updated the original blog posts about setting up &lt;code&gt;barf&lt;/code&gt; on macOS and OpenBSD to reflect these changes.&lt;/p&gt;
&lt;p&gt;Cheers!&lt;/p&gt;</content>
<link href="https://barf.btxx.org/qol"/>
<id>https://barf.btxx.org/qol</id>
@@ -34,10 +38,10 @@
</entry>
<entry>
<title>Running `barf` on OpenBSD</title>
- <content type="html">&lt;h1&gt;Running &lt;code&gt;barf&lt;/code&gt; on OpenBSD&lt;/h1&gt;
+ <content type="html">&lt;h1 id=&quot;running-on-openbsd&quot;&gt;Running &lt;code&gt;barf&lt;/code&gt; on OpenBSD&lt;/h1&gt;
&lt;p&gt;2023-08-12&lt;/p&gt;
-&lt;p&gt;The &lt;code&gt;barf&lt;/code&gt; project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux/GNU tools, but I also need to support OpenBSD since that is my personal operating system of choice.&lt;/p&gt;
-&lt;h2&gt;Download Packages&lt;/h2&gt;
+&lt;p&gt;The &lt;code&gt;barf&lt;/code&gt; project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux&amp;#47;GNU tools, but I also need to support OpenBSD since that is my personal operating system of choice.&lt;/p&gt;
+&lt;h2 id=&quot;download-packages&quot;&gt;Download Packages&lt;/h2&gt;
&lt;p&gt;Along with your Markdown parser of choice (&lt;code&gt;barf&lt;/code&gt; assumes you will be using my version of &lt;a href=&quot;https://git.sr.ht/~bt/smu&quot;&gt;smu&lt;/a&gt;) you will also need to install the required packages on your OpenBSD system:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;doas pkg_add rsync coreutils gsed cmake gcc
&lt;/code&gt;&lt;/pre&gt;
@@ -49,21 +53,21 @@
</entry>
<entry>
<title>Markdown Examples in barf</title>
- <content type="html">&lt;h1&gt;Markdown Examples in barf&lt;/h1&gt;
+ <content type="html">&lt;h1 id=&quot;markdown-examples-in-barf&quot;&gt;Markdown Examples in barf&lt;/h1&gt;
&lt;p&gt;2023-01-05&lt;/p&gt;
-&lt;p&gt;This following was lifted from &lt;a href=&quot;https://github.com/karlb/smu&quot;&gt;https://github.com/karlb/smu&lt;/a&gt;&lt;/p&gt;
-&lt;h1&gt;&lt;code&gt;smu&lt;/code&gt; Syntax&lt;/h1&gt;
+&lt;p&gt;This following was lifted from &lt;a href=&quot;https://github.com/karlb/smu&quot;&gt;https:&amp;#47;&amp;#47;github.com&amp;#47;karlb&amp;#47;smu&lt;/a&gt;&lt;/p&gt;
+&lt;h1 id=&quot;syntax&quot;&gt;&lt;code&gt;smu&lt;/code&gt; Syntax&lt;/h1&gt;
&lt;p&gt;smu was started as a rewrite of
&lt;a href=&quot;http://daringfireball.net/projects/markdown/&quot;&gt;markdown&lt;/a&gt; but became something
more lightweight and consistent. It differs from &lt;a href=&quot;https://commonmark.org/&quot;&gt;CommonMark&lt;/a&gt; in the following ways:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;No support for &lt;em&gt;reference style links&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Stricter indentation rules for lists&lt;/li&gt;
-&lt;li&gt;Lists don&#39;t end paragraphs by themselves (blank line needed)&lt;/li&gt;
-&lt;li&gt;Horizontal rules (&lt;code&gt;&amp;lt;hr&amp;gt;&lt;/code&gt;) must use &lt;code&gt;- - -&lt;/code&gt; as syntax&lt;/li&gt;
+&lt;li&gt;Lists don&amp;#8217;t end paragraphs by themselves (blank line needed)&lt;/li&gt;
+&lt;li&gt;Horizontal rules (&lt;code&gt;&amp;#60;hr&amp;#62;&lt;/code&gt;) must use &lt;code&gt;- - -&lt;/code&gt; as syntax&lt;/li&gt;
&lt;li&gt;Code fences have stricter syntax&lt;/li&gt;
&lt;/ul&gt;
-&lt;p&gt;Patches that increase the CommonMark compatibility are welcome as long as they don&#39;t increase the code complexity significantly.&lt;/p&gt;
+&lt;p&gt;Patches that increase the CommonMark compatibility are welcome as long as they don&amp;#8217;t increase the code complexity significantly.&lt;/p&gt;
&lt;p&gt;This project is a fork of the &lt;a href=&quot;https://github.com/gottox/smu&quot;&gt;original smu&lt;/a&gt; by
&lt;a href=&quot;https://eboland.de&quot;&gt;Enno Boland (gottox)&lt;/a&gt;. The main differences to the
original smu are:&lt;/p&gt;
@@ -77,55 +81,40 @@ original smu are:&lt;/p&gt;
&lt;li&gt;Keep HTML comments in output&lt;/li&gt;
&lt;li&gt;Improved spec compliance for lists&lt;/li&gt;
&lt;li&gt;Nesting code block in blockquotes works&lt;/li&gt;
-&lt;li&gt;&quot;Empty&quot; lines in lists behave identically, no matter how much whitespace they contain&lt;/li&gt;
+&lt;li&gt;&amp;#8220;Empty&amp;#8221; lines in lists behave identically, no matter how much whitespace they contain&lt;/li&gt;
&lt;li&gt;No backslash escapes in code blocks&lt;/li&gt;
&lt;li&gt;Use first number as start number for ordered lists&lt;/li&gt;
-&lt;/ul&gt;
-&lt;/li&gt;
+&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Added a simple test suite to check for compliance and avoid regressions&lt;/li&gt;
&lt;/ul&gt;
-&lt;h2&gt;Inline patterns&lt;/h2&gt;
+&lt;h2 id=&quot;inline-patterns&quot;&gt;Inline patterns&lt;/h2&gt;
&lt;p&gt;There are several patterns you can use to highlight your text:&lt;/p&gt;
&lt;ul&gt;
-&lt;li&gt;&lt;p&gt;Emphasis&lt;/p&gt;
-
+&lt;li&gt;&lt;p&gt;Emphasis
&lt;ul&gt;
&lt;li&gt;Surround your text with &lt;code&gt;*&lt;/code&gt; or &lt;code&gt;_&lt;/code&gt; to get &lt;em&gt;emphasised&lt;/em&gt; text:
-&lt;pre&gt;&lt;code&gt;This *is* cool.
-This _is_ cool, too.
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
+This &lt;em&gt;is&lt;/em&gt; cool.
+This &lt;em&gt;is&lt;/em&gt; cool, too.&lt;/li&gt;
&lt;li&gt;Surround your text with &lt;code&gt;**&lt;/code&gt; or &lt;code&gt;__&lt;/code&gt; to get &lt;strong&gt;strong&lt;/strong&gt; text:
-&lt;pre&gt;&lt;code&gt;This **is** cool.
-This __is__ cool, too.
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
+This &lt;strong&gt;is&lt;/strong&gt; cool.
+This &lt;strong&gt;is&lt;/strong&gt; cool, too.&lt;/li&gt;
&lt;li&gt;Surround your text with &lt;code&gt;***&lt;/code&gt; or &lt;code&gt;___&lt;/code&gt; to get &lt;strong&gt;&lt;em&gt;strong and emphasised&lt;/em&gt;&lt;/strong&gt; text:
-&lt;pre&gt;&lt;code&gt;This ***is*** cool.
-This ___is___ cool, too.
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
-&lt;li&gt;But this example won&#39;t work as expected:
-&lt;pre&gt;&lt;code&gt;***Hello** you*
-&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;This is a wontfix bug because it would make the source too complex.
+This &lt;strong&gt;&lt;em&gt;is&lt;/em&gt;&lt;/strong&gt; cool.
+This &lt;strong&gt;&lt;em&gt;is&lt;/em&gt;&lt;/strong&gt; cool, too.&lt;/li&gt;
+&lt;li&gt;But this example won&amp;#8217;t work as expected:
+*&lt;strong&gt;Hello&lt;/strong&gt; you*
+This is a wontfix bug because it would make the source too complex.
Use this instead:
-&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;***Hello*** *you*
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
-&lt;/ul&gt;
-&lt;/li&gt;
+&lt;strong&gt;&lt;em&gt;Hello&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;you&lt;/em&gt;&lt;/li&gt;
+&lt;/ul&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;inline Code&lt;/p&gt;
&lt;p&gt;You can produce inline code by surrounding it with backticks.&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;Use `rm -rf /` if you&#39;re a N00b.
-Use ``rm -rf /`` if you&#39;re a N00b.
-Use ```rm -rf /``` if you&#39;re a N00b.
-&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;Double and triple backticks can be used if the code itself contains backticks.&lt;/p&gt;
-&lt;/li&gt;
+&lt;p&gt;Use &lt;code&gt;rm -rf &amp;#47;&lt;/code&gt; if you&amp;#8217;re a N00b.
+Use &lt;code&gt;rm -rf &amp;#47;&lt;/code&gt; if you&amp;#8217;re a N00b.
+Use &lt;code&gt;rm -rf &amp;#47;&lt;/code&gt; if you&amp;#8217;re a N00b.&lt;/p&gt;
+&lt;p&gt;Double and triple backticks can be used if the code itself contains backticks.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
-&lt;h2&gt;Titles&lt;/h2&gt;
+&lt;h2 id=&quot;titles&quot;&gt;Titles&lt;/h2&gt;
&lt;p&gt;Creating titles in smu is very easy. There are two different syntax styles. The
first is underlining with at least three characters:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Heading
@@ -136,10 +125,10 @@ Topic
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This is very intuitive and self explaining. The resulting sourcecode looks like
this:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;h1&amp;gt;Heading&amp;lt;/h1&amp;gt;
-&amp;lt;h2&amp;gt;Topic&amp;lt;/h2&amp;gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;h1&amp;#62;Heading&amp;#60;&amp;#47;h1&amp;#62;
+&amp;#60;h2&amp;#62;Topic&amp;#60;&amp;#47;h2&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;Use the following prefixes if you don&#39;t like underlining:&lt;/p&gt;
+&lt;p&gt;Use the following prefixes if you don&amp;#8217;t like underlining:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# h1
## h2
### h3
@@ -147,31 +136,31 @@ this:&lt;/p&gt;
##### h5
###### h6
&lt;/code&gt;&lt;/pre&gt;
-&lt;h2&gt;Links&lt;/h2&gt;
-&lt;p&gt;The simplest way to define a link is with simple &lt;code&gt;&amp;lt;&amp;gt;&lt;/code&gt;.&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;http://s01.de&amp;gt;
+&lt;h2 id=&quot;links&quot;&gt;Links&lt;/h2&gt;
+&lt;p&gt;The simplest way to define a link is with simple &lt;code&gt;&amp;#60;&amp;#62;&lt;/code&gt;.&lt;/p&gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;http:&amp;#47;&amp;#47;s01.de&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;You can do the same for E-Mail addresses:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;yourname@s01.de&amp;gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;yourname@s01.de&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;If you want to define a label for the url, you have to use a different syntax&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;[smu - simple mark up](http://s01.de/~gottox/index.cgi/proj_smu)
+&lt;pre&gt;&lt;code&gt;[smu - simple mark up](http:&amp;#47;&amp;#47;s01.de&amp;#47;~gottox&amp;#47;index.cgi&amp;#47;proj_smu)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The resulting HTML-Code&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;a href=&amp;quot;http://s01.de/~gottox/index.cgi/proj_smu&amp;quot;&amp;gt;smu - simple mark up&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;a href=&quot;http:&amp;#47;&amp;#47;s01.de&amp;#47;~gottox&amp;#47;index.cgi&amp;#47;proj_smu&quot;&amp;#62;smu - simple mark up&amp;#60;&amp;#47;a&amp;#62;&amp;#60;&amp;#47;p&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
-&lt;h2&gt;Lists&lt;/h2&gt;
+&lt;h2 id=&quot;lists&quot;&gt;Lists&lt;/h2&gt;
&lt;p&gt;Defining lists is very straightforward:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;* Item 1
* Item 2
* Item 3
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Result:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;ul&amp;gt;
-&amp;lt;li&amp;gt;Item 1&amp;lt;/li&amp;gt;
-&amp;lt;li&amp;gt;Item 2&amp;lt;/li&amp;gt;
-&amp;lt;li&amp;gt;Item 3&amp;lt;/li&amp;gt;
-&amp;lt;/ul&amp;gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;ul&amp;#62;
+&amp;#60;li&amp;#62;Item 1&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;li&amp;#62;Item 2&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;li&amp;#62;Item 3&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;&amp;#47;ul&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Defining ordered lists is also very easy:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;1. Item 1
@@ -185,50 +174,43 @@ continously counted. If you want a list starting at 2, you could write:&lt;/p&gt
2. Item 3
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and get the following HTML which will render with the numbers 2, 3, 4:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;ol start=&amp;quot;2&amp;quot;&amp;gt;
-&amp;lt;li&amp;gt;Item 1&amp;lt;/li&amp;gt;
-&amp;lt;li&amp;gt;Item 2&amp;lt;/li&amp;gt;
-&amp;lt;li&amp;gt;Item 3&amp;lt;/li&amp;gt;
-&amp;lt;/ol&amp;gt;
-&lt;/code&gt;&lt;/pre&gt;
-&lt;h2&gt;Code &amp;amp; Blockquote&lt;/h2&gt;
-&lt;p&gt;Use the &lt;code&gt;&amp;gt; &lt;/code&gt; as a line prefix for defining blockquotes. Blockquotes are
+&lt;pre&gt;&lt;code&gt;&amp;#60;ol start=&quot;2&quot;&amp;#62;
+&amp;#60;li&amp;#62;Item 1&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;li&amp;#62;Item 2&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;li&amp;#62;Item 3&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;&amp;#47;ol&amp;#62;
+&lt;/code&gt;&lt;/pre&gt;
+&lt;h2 id=&quot;code-blockquote&quot;&gt;Code &amp;#38; Blockquote&lt;/h2&gt;
+&lt;p&gt;Use the &lt;code&gt;&amp;#62;&lt;/code&gt; as a line prefix for defining blockquotes. Blockquotes are
interpreted as well. This makes it possible to embed links, headings and even
other quotes into a quote:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;gt; Hello
-&amp;gt; This is a quote with a [link](http://s01.de/~gottox)
+&lt;pre&gt;&lt;code&gt;&amp;#62; Hello
+&amp;#62; This is a quote with a [link](http:&amp;#47;&amp;#47;s01.de&amp;#47;~gottox)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Result:
-&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;
-Hello
-This is a quote with a &amp;lt;a href=&amp;quot;http://s01.de/~gottox&amp;quot;&amp;gt;link&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;
-&amp;lt;/blockquote&amp;gt;
-&lt;/code&gt;&lt;/pre&gt;
+
+ Hello
+ This is a quote with a link
+ &lt;/p&gt;
&lt;p&gt;You can define a code block with a leading Tab or with &lt;strong&gt;4&lt;/strong&gt; leading spaces&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt; this.is(code)
+&lt;pre&gt;&lt;code&gt; this.is(code)
this.is(code, too)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Result:
-&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;this.is(code)&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;
-&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;this.is(code, too)
-&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;
-&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;Please note that you can&#39;t use HTML or smu syntax in a code block.&lt;/p&gt;
+ this.is(code)
+ this.is(code, too)
+ &lt;/p&gt;
+&lt;p&gt;Please note that you can&amp;#8217;t use HTML or smu syntax in a code block.&lt;/p&gt;
&lt;p&gt;Another way to write code blocks is to use code fences:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;```json
-{&amp;quot;some&amp;quot;: &amp;quot;code&amp;quot;}
+{&quot;some&quot;: &quot;code&quot;}
```
&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;This has two advantages:&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;The optional language identifier will be turned into a &lt;code&gt;language-&lt;/code&gt; class name&lt;/li&gt;
-&lt;li&gt;You can keep the original indentation which helps when doing copy &amp;amp; paste&lt;/li&gt;
-&lt;/ul&gt;
-&lt;h2&gt;Tables&lt;/h2&gt;
+&lt;p&gt;This has two advantages:
+* The optional language identifier will be turned into a &lt;code&gt;language-&lt;/code&gt; class name
+* You can keep the original indentation which helps when doing copy &amp;#38; paste&lt;/p&gt;
+&lt;h2 id=&quot;tables&quot;&gt;Tables&lt;/h2&gt;
&lt;p&gt;Tables can be generated with the following syntax:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;| Heading1 | Heading2 |
| -------- | -------- |
@@ -247,41 +229,48 @@ the table body.&lt;/p&gt;
| :------- | :------: | -------: |
| Left | Center | Right |
&lt;/code&gt;&lt;/pre&gt;
-&lt;h2&gt;Other interesting stuff&lt;/h2&gt;
+&lt;h2 id=&quot;footnotes&quot;&gt;Footnotes&lt;/h2&gt;
+&lt;p&gt;Here is an example of using Markdown footnotes&lt;sup id=&quot;fnref1&quot;&gt;&lt;a href=&quot;#fn1&quot; rel=&quot;footnote&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;. And incase you were looking for more examples, here is another one&lt;sup id=&quot;fnref2&quot;&gt;&lt;a href=&quot;#fn2&quot; rel=&quot;footnote&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;
+&lt;h2 id=&quot;other-interesting-stuff&quot;&gt;Other interesting stuff&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;to insert a horizontal rule simple add &lt;code&gt;- - -&lt;/code&gt; into an empty line:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;Hello
-- - -
-Hello2
-&lt;/code&gt;&lt;/pre&gt;
+&lt;p&gt;Hello&lt;/p&gt;
+&lt;hr/&gt;
+&lt;p&gt;Hello2&lt;/p&gt;
&lt;p&gt;Result:
-&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;p&amp;gt;
+
Hello
-&amp;lt;hr /&amp;gt;
-&lt;/code&gt;&lt;/pre&gt;
-&lt;pre&gt;&lt;code&gt;Hello2&amp;lt;/p&amp;gt;
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
+&lt;/p&gt;
+&lt;p&gt;Hello2&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Any ASCII punctuation character may escaped by precedeing them with a
backslash to avoid them being interpreted:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;!&amp;quot;#$%&amp;amp;&#39;()*+,-./:;&amp;lt;=&amp;gt;?@[]^_`{|}~\
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
+&lt;p&gt;!&amp;#8221;#$%&amp;#38;&amp;#8217;()*+,-.&amp;#47;:;&amp;#60;=&amp;#62;?@[]^_`{|}~\&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To force a linebreak simple add two spaces to the end of the line:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;No linebreak
+&lt;p&gt;No linebreak
here.
-But here is
-one.
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
+But here is&lt;br/&gt;
+one.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
-&lt;h2&gt;embed HTML&lt;/h2&gt;
+&lt;h2 id=&quot;embed-html&quot;&gt;embed HTML&lt;/h2&gt;
&lt;p&gt;You can include arbitrary HTML code in your documents. The HTML will be
passed through to the resulting document without modification. This is a good
-way to work around features that are missing in smu. If you don&#39;t want this
+way to work around features that are missing in smu. If you don&amp;#8217;t want this
behaviour, use the &lt;code&gt;-n&lt;/code&gt; flag when executing smu to stricly escape the HTML
-tags.&lt;/p&gt;</content>
+tags.&lt;/p&gt;
+&lt;div class=&quot;footnotes&quot;&gt;
+&lt;hr/&gt;
+&lt;ol&gt;
+
+&lt;li id=&quot;fn1&quot;&gt;
+&lt;p&gt;This is the first footnote&amp;#160;&lt;a href=&quot;#fnref1&quot; rev=&quot;footnote&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
+&lt;/li&gt;
+
+&lt;li id=&quot;fn2&quot;&gt;
+&lt;p&gt;Just like I promised - another footnote example&amp;#160;&lt;a href=&quot;#fnref2&quot; rev=&quot;footnote&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
+&lt;/li&gt;
+
+&lt;/ol&gt;
+&lt;/div&gt;</content>
<link href="https://barf.btxx.org/markdown-examples"/>
<id>https://barf.btxx.org/markdown-examples</id>
<updated>2023-01-05T10:00:00Z</updated>
@@ -289,10 +278,10 @@ tags.&lt;/p&gt;</content>
</entry>
<entry>
<title>Running `barf` on MacOS</title>
- <content type="html">&lt;h1&gt;Running &lt;code&gt;barf&lt;/code&gt; on MacOS&lt;/h1&gt;
+ <content type="html">&lt;h1 id=&quot;running-on-macos&quot;&gt;Running &lt;code&gt;barf&lt;/code&gt; on MacOS&lt;/h1&gt;
&lt;p&gt;2023-01-18&lt;/p&gt;
-&lt;p&gt;The &lt;code&gt;barf&lt;/code&gt; project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux/GNU tools, but that doesn&#39;t mean MacOS needs to be left out in the cold.&lt;/p&gt;
-&lt;h2&gt;Download Packages&lt;/h2&gt;
+&lt;p&gt;The &lt;code&gt;barf&lt;/code&gt; project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux&amp;#47;GNU tools, but that doesn&amp;#8217;t mean MacOS needs to be left out in the cold.&lt;/p&gt;
+&lt;h2 id=&quot;download-packages&quot;&gt;Download Packages&lt;/h2&gt;
&lt;p&gt;This walkthrough assumes that you already have &lt;a href=&quot;https://brew.sh/&quot;&gt;homebrew&lt;/a&gt; installed on your machine.&lt;/p&gt;
&lt;p&gt;You will need to install the GNU versions of both &lt;code&gt;date&lt;/code&gt; and &lt;code&gt;sed&lt;/code&gt; in order to avoid breaking things when &lt;code&gt;barf&lt;/code&gt; tries to build.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;brew install coreutils
@@ -306,17 +295,18 @@ brew install gnu-sed
</entry>
<entry>
<title>Supporting Basic Dark Mode</title>
- <content type="html">&lt;h1&gt;Supporting Basic Dark Mode&lt;/h1&gt;
+ <content type="html">&lt;h1 id=&quot;supporting-basic-dark-mode&quot;&gt;Supporting Basic Dark Mode&lt;/h1&gt;
&lt;p&gt;2023-03-07&lt;/p&gt;
&lt;p&gt;The default &lt;code&gt;barf&lt;/code&gt; site generator now supports basic dark mode functionality. This has been achieved by including the standard &lt;code&gt;color-scheme&lt;/code&gt; meta tag in the core &lt;code&gt;header.html&lt;/code&gt; file:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;meta name=&amp;quot;color-scheme&amp;quot; content=&amp;quot;dark light&amp;quot;&amp;gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;meta name=&quot;color-scheme&quot; content=&quot;dark light&quot;&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This change also ships with some minor updates to the default &lt;code&gt;blockquote&lt;/code&gt; design. You can see an example below:&lt;/p&gt;
-&lt;blockquote&gt;&lt;p&gt;This is a really &lt;em&gt;cool&lt;/em&gt; blockquote&lt;/p&gt;
+&lt;blockquote&gt;
+&lt;p&gt;This is a really &lt;em&gt;cool&lt;/em&gt; blockquote&lt;/p&gt;
&lt;/blockquote&gt;
-&lt;h2&gt;Minor Caveat&lt;/h2&gt;
-&lt;p&gt;Unfortunately, Safari still has minor &lt;code&gt;ahref&lt;/code&gt; / link color issue when defaulting to browser dark mode. If this is a problem for your own build of &lt;code&gt;barf&lt;/code&gt;, take a look at a &lt;a href=&quot;https://bt.ht/safari-default-dark-mode/&quot;&gt;solution I wrote about here&lt;/a&gt;.&lt;/p&gt;
-&lt;p&gt;Personally, I can&#39;t be bothered to add that extra code to this project. The Safari team needs to get their shit together and fix such a simple bug. Plus, you shouldn&#39;t be using Safari anyway - it&#39;s proprietary garbage.&lt;/p&gt;</content>
+&lt;h2 id=&quot;minor-caveat&quot;&gt;Minor Caveat&lt;/h2&gt;
+&lt;p&gt;Unfortunately, Safari still has minor &lt;code&gt;ahref&lt;/code&gt; &amp;#47; link color issue when defaulting to browser dark mode. If this is a problem for your own build of &lt;code&gt;barf&lt;/code&gt;, take a look at a &lt;a href=&quot;https://bt.ht/safari-default-dark-mode/&quot;&gt;solution I wrote about here&lt;/a&gt;.&lt;/p&gt;
+&lt;p&gt;Personally, I can&amp;#8217;t be bothered to add that extra code to this project. The Safari team needs to get their shit together and fix such a simple bug. Plus, you shouldn&amp;#8217;t be using Safari anyway - it&amp;#8217;s proprietary garbage.&lt;/p&gt;</content>
<link href="https://barf.btxx.org/dark-mode"/>
<id>https://barf.btxx.org/dark-mode</id>
<updated>2023-03-07T10:00:00Z</updated>
@@ -324,22 +314,22 @@ brew install gnu-sed
</entry>
<entry>
<title>Cleaning Up barf's Structure</title>
- <content type="html">&lt;h1&gt;Cleaning Up barf&#39;s Structure&lt;/h1&gt;
+ <content type="html">&lt;h1 id=&quot;cleaning-up-barfs-structure&quot;&gt;Cleaning Up barf&amp;#8217;s Structure&lt;/h1&gt;
&lt;p&gt;2023-10-09&lt;/p&gt;
&lt;p&gt;Things probably look a little different around here. Both in terms of this demo site &lt;em&gt;and&lt;/em&gt; the core &lt;code&gt;barf&lt;/code&gt; files itself.&lt;/p&gt;
-&lt;p&gt;This project was always intended to be focused on Linux platforms. So, I&#39;ve removed the included &lt;code&gt;barf_macos&lt;/code&gt; and &lt;code&gt;barf_openbsd&lt;/code&gt; files to keep the generator more streamlined. But have no fear! Instructions for both Mac and OpenBSD can still be found on the main blog:&lt;/p&gt;
+&lt;p&gt;This project was always intended to be focused on Linux platforms. So, I&amp;#8217;ve removed the included &lt;code&gt;barf_macos&lt;/code&gt; and &lt;code&gt;barf_openbsd&lt;/code&gt; files to keep the generator more streamlined. But have no fear! Instructions for both Mac and OpenBSD can still be found on the main blog:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;/macos&quot;&gt;Running &lt;code&gt;barf&lt;/code&gt; on MacOS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/openbsd&quot;&gt;Running &lt;code&gt;barf&lt;/code&gt; on OpenBSD&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
-&lt;p&gt;As for the &quot;default&quot; look of &lt;code&gt;barf&lt;/code&gt;, I&#39;ve simplified things further. The total CSS styling now consists of only:&lt;/p&gt;
+&lt;p&gt;As for the &amp;#8220;default&amp;#8221; look of &lt;code&gt;barf&lt;/code&gt;, I&amp;#8217;ve simplified things further. The total CSS styling now consists of only:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;*{box-sizing:border-box;}
body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}
img{max-width:100%;}
pre{overflow:auto;}
&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;Users still have the ability to tweak things as much as they&#39;d like, but the standard look should be more than enough for anyone just focusing on writing. Dark mode has also been dropped but is easily added by adding the following inside the &lt;code&gt;head&lt;/code&gt; tags:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;meta name=&amp;quot;color-scheme&amp;quot; content=&amp;quot;dark light&amp;quot;&amp;gt;
+&lt;p&gt;Users still have the ability to tweak things as much as they&amp;#8217;d like, but the standard look should be more than enough for anyone just focusing on writing. Dark mode has also been dropped but is easily added by adding the following inside the &lt;code&gt;head&lt;/code&gt; tags:&lt;/p&gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;meta name=&quot;color-scheme&quot; content=&quot;dark light&quot;&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Hopefully these changes reduce the overall scope of the project, which was a main point made on the README originally!&lt;/p&gt;</content>
<link href="https://barf.btxx.org/cleanup"/>
diff --git a/build/cleanup/index.html b/build/cleanup/index.html
index 4c24c20..b567bac 100644
--- a/build/cleanup/index.html
+++ b/build/cleanup/index.html
@@ -7,7 +7,7 @@
<title>Cleaning Up barf's Structure</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}</style>
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}.footnotes{font-size:90%;}</style>
</head>
<nav>
@@ -15,22 +15,22 @@
</nav>
<main>
-<h1>Cleaning Up barf's Structure</h1>
+<h1 id="cleaning-up-barfs-structure">Cleaning Up barf&#8217;s Structure</h1>
<p>2023-10-09</p>
<p>Things probably look a little different around here. Both in terms of this demo site <em>and</em> the core <code>barf</code> files itself.</p>
-<p>This project was always intended to be focused on Linux platforms. So, I've removed the included <code>barf_macos</code> and <code>barf_openbsd</code> files to keep the generator more streamlined. But have no fear! Instructions for both Mac and OpenBSD can still be found on the main blog:</p>
+<p>This project was always intended to be focused on Linux platforms. So, I&#8217;ve removed the included <code>barf_macos</code> and <code>barf_openbsd</code> files to keep the generator more streamlined. But have no fear! Instructions for both Mac and OpenBSD can still be found on the main blog:</p>
<ul>
<li><a href="/macos">Running <code>barf</code> on MacOS</a></li>
<li><a href="/openbsd">Running <code>barf</code> on OpenBSD</a></li>
</ul>
-<p>As for the "default" look of <code>barf</code>, I've simplified things further. The total CSS styling now consists of only:</p>
+<p>As for the &#8220;default&#8221; look of <code>barf</code>, I&#8217;ve simplified things further. The total CSS styling now consists of only:</p>
<pre><code>*{box-sizing:border-box;}
body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}
img{max-width:100%;}
pre{overflow:auto;}
</code></pre>
-<p>Users still have the ability to tweak things as much as they'd like, but the standard look should be more than enough for anyone just focusing on writing. Dark mode has also been dropped but is easily added by adding the following inside the <code>head</code> tags:</p>
-<pre><code>&lt;meta name=&quot;color-scheme&quot; content=&quot;dark light&quot;&gt;
+<p>Users still have the ability to tweak things as much as they&#8217;d like, but the standard look should be more than enough for anyone just focusing on writing. Dark mode has also been dropped but is easily added by adding the following inside the <code>head</code> tags:</p>
+<pre><code>&#60;meta name="color-scheme" content="dark light"&#62;
</code></pre>
<p>Hopefully these changes reduce the overall scope of the project, which was a main point made on the README originally!</p>
<footer role="contentinfo">
diff --git a/build/dark-mode/index.html b/build/dark-mode/index.html
index 1c2ecd5..02c75f0 100644
--- a/build/dark-mode/index.html
+++ b/build/dark-mode/index.html
@@ -7,7 +7,7 @@
<title>Supporting Basic Dark Mode</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}</style>
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}.footnotes{font-size:90%;}</style>
</head>
<nav>
@@ -15,17 +15,18 @@
</nav>
<main>
-<h1>Supporting Basic Dark Mode</h1>
+<h1 id="supporting-basic-dark-mode">Supporting Basic Dark Mode</h1>
<p>2023-03-07</p>
<p>The default <code>barf</code> site generator now supports basic dark mode functionality. This has been achieved by including the standard <code>color-scheme</code> meta tag in the core <code>header.html</code> file:</p>
-<pre><code>&lt;meta name=&quot;color-scheme&quot; content=&quot;dark light&quot;&gt;
+<pre><code>&#60;meta name="color-scheme" content="dark light"&#62;
</code></pre>
<p>This change also ships with some minor updates to the default <code>blockquote</code> design. You can see an example below:</p>
-<blockquote><p>This is a really <em>cool</em> blockquote</p>
+<blockquote>
+<p>This is a really <em>cool</em> blockquote</p>
</blockquote>
-<h2>Minor Caveat</h2>
-<p>Unfortunately, Safari still has minor <code>ahref</code> / link color issue when defaulting to browser dark mode. If this is a problem for your own build of <code>barf</code>, take a look at a <a href="https://bt.ht/safari-default-dark-mode/">solution I wrote about here</a>.</p>
-<p>Personally, I can't be bothered to add that extra code to this project. The Safari team needs to get their shit together and fix such a simple bug. Plus, you shouldn't be using Safari anyway - it's proprietary garbage.</p>
+<h2 id="minor-caveat">Minor Caveat</h2>
+<p>Unfortunately, Safari still has minor <code>ahref</code> &#47; link color issue when defaulting to browser dark mode. If this is a problem for your own build of <code>barf</code>, take a look at a <a href="https://bt.ht/safari-default-dark-mode/">solution I wrote about here</a>.</p>
+<p>Personally, I can&#8217;t be bothered to add that extra code to this project. The Safari team needs to get their shit together and fix such a simple bug. Plus, you shouldn&#8217;t be using Safari anyway - it&#8217;s proprietary garbage.</p>
<footer role="contentinfo">
<hr>
<h3 id="menu">Menu Navigation</h3>
diff --git a/build/index.html b/build/index.html
index 488a398..c04b05b 100644
--- a/build/index.html
+++ b/build/index.html
@@ -7,7 +7,7 @@
<title>barf</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}</style>
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}.footnotes{font-size:90%;}</style>
</head>
<nav>
@@ -15,40 +15,35 @@
</nav>
<main>
-<h1>barf</h1>
+<h1 id="barf">barf</h1>
<p><strong>barf is an extremely minimal blog generator.</strong></p>
-<p>The entire build script is less than 100 lines of shell.</p>
-<p>It could almost be called "suckless", but probably isn't. It was created for those focused on writing, not tinkering.</p>
-<p>You can learn more by reading the <a href="https://git.btxx.org/barf/about">official README</a> and view the generated <a href="/atom.xml">Atom feed here</a></p>
+<p>The entire build script is &#62;170 lines of shell.</p>
+<p>It could almost be called &#8220;suckless&#8221;, but probably isn&#8217;t. It was created for those focused on writing, not tinkering.</p>
+<p>You can learn more by reading the <a href="https://git.btxx.org/barf/about">official README</a>.</p>
<p><strong>barf</strong> = blogs are really fun</p>
-<hr />
-<h3>Get setup in 2 minutes</h3>
+<hr/>
+<h3 id="get-setup-in-2-minutes">Get setup in 2 minutes</h3>
<p><strong>Install dependencies:</strong></p>
-
-<ul>
-<li>For Linux: <code>rsync</code></li>
-<li>For macOS: <code>brew install coreutils gnu-sed</code></li>
-<li>For OpenBSD: <code>doas pkg_add rsync coreutils gsed cmake gcc</code></li>
-</ul>
-<p><strong>Clone and install the lightweight markdown parser, <code>smu</code></strong></p>
-
-<ul>
-<li><code>git clone https://git.btxx.org/smu</code></li>
-<li><code>cd smu ; make ; sudo make install</code></li>
-</ul>
-<p><strong>Clone <code>barf</code>:</strong> </p>
-
-<ul>
-<li><code>git clone https://git.btxx.org/barf</code></li>
-</ul>
+<p>For Linux (Alpine example):</p>
+<pre><code>sudo apk add rsync lowdown
+</code></pre>
+<p>For macOS:</p>
+<pre><code>brew install rsync lowdown coreutils gnu-sed
+</code></pre>
+<p>For OpenBSD:</p>
+<pre><code>doas pkg_add rsync lowdown coreutils gsed cmake gcc
+</code></pre>
+<p><strong>Clone barf:</strong> </p>
+<pre><code>git clone https:&#47;&#47;git.btxx.org&#47;barf
+</code></pre>
<ol>
<li>Open project, change the <code>domain</code> variable at the top of the core barf file</li>
<li>Run: <code>make build</code></li>
<li>Upload the contents of <code>build</code> to your server! </li>
<li>Profit?</li>
</ol>
-<hr />
-<h3>Articles</h3>
+<hr/>
+<h3 id="articles">Articles</h3>
<ul>
<li>2024-06-06 &middot; <a href="qol/">Quality of Life Improvements</a></li>
<li>2023-10-09 &middot; <a href="cleanup/">Cleaning Up barf's Structure</a></li>
diff --git a/build/macos/index.html b/build/macos/index.html
index 06a1e4d..40ed9a8 100644
--- a/build/macos/index.html
+++ b/build/macos/index.html
@@ -7,7 +7,7 @@
<title>Running `barf` on MacOS</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}</style>
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}.footnotes{font-size:90%;}</style>
</head>
<nav>
@@ -15,10 +15,10 @@
</nav>
<main>
-<h1>Running <code>barf</code> on MacOS</h1>
+<h1 id="running-on-macos">Running <code>barf</code> on MacOS</h1>
<p>2023-01-18</p>
-<p>The <code>barf</code> project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux/GNU tools, but that doesn't mean MacOS needs to be left out in the cold.</p>
-<h2>Download Packages</h2>
+<p>The <code>barf</code> project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux&#47;GNU tools, but that doesn&#8217;t mean MacOS needs to be left out in the cold.</p>
+<h2 id="download-packages">Download Packages</h2>
<p>This walkthrough assumes that you already have <a href="https://brew.sh/">homebrew</a> installed on your machine.</p>
<p>You will need to install the GNU versions of both <code>date</code> and <code>sed</code> in order to avoid breaking things when <code>barf</code> tries to build.</p>
<pre><code>brew install coreutils
diff --git a/build/markdown-examples/index.html b/build/markdown-examples/index.html
index 1e28801..44f972e 100644
--- a/build/markdown-examples/index.html
+++ b/build/markdown-examples/index.html
@@ -7,7 +7,7 @@
<title>Markdown Examples in barf</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}</style>
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}.footnotes{font-size:90%;}</style>
</head>
<nav>
@@ -15,21 +15,21 @@
</nav>
<main>
-<h1>Markdown Examples in barf</h1>
+<h1 id="markdown-examples-in-barf">Markdown Examples in barf</h1>
<p>2023-01-05</p>
-<p>This following was lifted from <a href="https://github.com/karlb/smu">https://github.com/karlb/smu</a></p>
-<h1><code>smu</code> Syntax</h1>
+<p>This following was lifted from <a href="https://github.com/karlb/smu">https:&#47;&#47;github.com&#47;karlb&#47;smu</a></p>
+<h1 id="syntax"><code>smu</code> Syntax</h1>
<p>smu was started as a rewrite of
<a href="http://daringfireball.net/projects/markdown/">markdown</a> but became something
more lightweight and consistent. It differs from <a href="https://commonmark.org/">CommonMark</a> in the following ways:</p>
<ul>
<li>No support for <em>reference style links</em></li>
<li>Stricter indentation rules for lists</li>
-<li>Lists don't end paragraphs by themselves (blank line needed)</li>
-<li>Horizontal rules (<code>&lt;hr&gt;</code>) must use <code>- - -</code> as syntax</li>
+<li>Lists don&#8217;t end paragraphs by themselves (blank line needed)</li>
+<li>Horizontal rules (<code>&#60;hr&#62;</code>) must use <code>- - -</code> as syntax</li>
<li>Code fences have stricter syntax</li>
</ul>
-<p>Patches that increase the CommonMark compatibility are welcome as long as they don't increase the code complexity significantly.</p>
+<p>Patches that increase the CommonMark compatibility are welcome as long as they don&#8217;t increase the code complexity significantly.</p>
<p>This project is a fork of the <a href="https://github.com/gottox/smu">original smu</a> by
<a href="https://eboland.de">Enno Boland (gottox)</a>. The main differences to the
original smu are:</p>
@@ -43,55 +43,40 @@ original smu are:</p>
<li>Keep HTML comments in output</li>
<li>Improved spec compliance for lists</li>
<li>Nesting code block in blockquotes works</li>
-<li>"Empty" lines in lists behave identically, no matter how much whitespace they contain</li>
+<li>&#8220;Empty&#8221; lines in lists behave identically, no matter how much whitespace they contain</li>
<li>No backslash escapes in code blocks</li>
<li>Use first number as start number for ordered lists</li>
-</ul>
-</li>
+</ul></li>
<li>Added a simple test suite to check for compliance and avoid regressions</li>
</ul>
-<h2>Inline patterns</h2>
+<h2 id="inline-patterns">Inline patterns</h2>
<p>There are several patterns you can use to highlight your text:</p>
<ul>
-<li><p>Emphasis</p>
-
+<li><p>Emphasis
<ul>
<li>Surround your text with <code>*</code> or <code>_</code> to get <em>emphasised</em> text:
-<pre><code>This *is* cool.
-This _is_ cool, too.
-</code></pre>
-</li>
+This <em>is</em> cool.
+This <em>is</em> cool, too.</li>
<li>Surround your text with <code>**</code> or <code>__</code> to get <strong>strong</strong> text:
-<pre><code>This **is** cool.
-This __is__ cool, too.
-</code></pre>
-</li>
+This <strong>is</strong> cool.
+This <strong>is</strong> cool, too.</li>
<li>Surround your text with <code>***</code> or <code>___</code> to get <strong><em>strong and emphasised</em></strong> text:
-<pre><code>This ***is*** cool.
-This ___is___ cool, too.
-</code></pre>
-</li>
-<li>But this example won't work as expected:
-<pre><code>***Hello** you*
-</code></pre>
-<p>This is a wontfix bug because it would make the source too complex.
+This <strong><em>is</em></strong> cool.
+This <strong><em>is</em></strong> cool, too.</li>
+<li>But this example won&#8217;t work as expected:
+*<strong>Hello</strong> you*
+This is a wontfix bug because it would make the source too complex.
Use this instead:
-</p>
-<pre><code>***Hello*** *you*
-</code></pre>
-</li>
-</ul>
-</li>
+<strong><em>Hello</em></strong> <em>you</em></li>
+</ul></p></li>
<li><p>inline Code</p>
<p>You can produce inline code by surrounding it with backticks.</p>
-<pre><code>Use `rm -rf /` if you're a N00b.
-Use ``rm -rf /`` if you're a N00b.
-Use ```rm -rf /``` if you're a N00b.
-</code></pre>
-<p>Double and triple backticks can be used if the code itself contains backticks.</p>
-</li>
+<p>Use <code>rm -rf &#47;</code> if you&#8217;re a N00b.
+Use <code>rm -rf &#47;</code> if you&#8217;re a N00b.
+Use <code>rm -rf &#47;</code> if you&#8217;re a N00b.</p>
+<p>Double and triple backticks can be used if the code itself contains backticks.</p></li>
</ul>
-<h2>Titles</h2>
+<h2 id="titles">Titles</h2>
<p>Creating titles in smu is very easy. There are two different syntax styles. The
first is underlining with at least three characters:</p>
<pre><code>Heading
@@ -102,10 +87,10 @@ Topic
</code></pre>
<p>This is very intuitive and self explaining. The resulting sourcecode looks like
this:</p>
-<pre><code>&lt;h1&gt;Heading&lt;/h1&gt;
-&lt;h2&gt;Topic&lt;/h2&gt;
+<pre><code>&#60;h1&#62;Heading&#60;&#47;h1&#62;
+&#60;h2&#62;Topic&#60;&#47;h2&#62;
</code></pre>
-<p>Use the following prefixes if you don't like underlining:</p>
+<p>Use the following prefixes if you don&#8217;t like underlining:</p>
<pre><code># h1
## h2
### h3
@@ -113,31 +98,31 @@ this:</p>
##### h5
###### h6
</code></pre>
-<h2>Links</h2>
-<p>The simplest way to define a link is with simple <code>&lt;&gt;</code>.</p>
-<pre><code>&lt;http://s01.de&gt;
+<h2 id="links">Links</h2>
+<p>The simplest way to define a link is with simple <code>&#60;&#62;</code>.</p>
+<pre><code>&#60;http:&#47;&#47;s01.de&#62;
</code></pre>
<p>You can do the same for E-Mail addresses:</p>
-<pre><code>&lt;yourname@s01.de&gt;
+<pre><code>&#60;yourname@s01.de&#62;
</code></pre>
<p>If you want to define a label for the url, you have to use a different syntax</p>
-<pre><code>[smu - simple mark up](http://s01.de/~gottox/index.cgi/proj_smu)
+<pre><code>[smu - simple mark up](http:&#47;&#47;s01.de&#47;~gottox&#47;index.cgi&#47;proj_smu)
</code></pre>
<p>The resulting HTML-Code</p>
-<pre><code>&lt;a href=&quot;http://s01.de/~gottox/index.cgi/proj_smu&quot;&gt;smu - simple mark up&lt;/a&gt;&lt;/p&gt;
+<pre><code>&#60;a href="http:&#47;&#47;s01.de&#47;~gottox&#47;index.cgi&#47;proj_smu"&#62;smu - simple mark up&#60;&#47;a&#62;&#60;&#47;p&#62;
</code></pre>
-<h2>Lists</h2>
+<h2 id="lists">Lists</h2>
<p>Defining lists is very straightforward:</p>
<pre><code>* Item 1
* Item 2
* Item 3
</code></pre>
<p>Result:</p>
-<pre><code>&lt;ul&gt;
-&lt;li&gt;Item 1&lt;/li&gt;
-&lt;li&gt;Item 2&lt;/li&gt;
-&lt;li&gt;Item 3&lt;/li&gt;
-&lt;/ul&gt;
+<pre><code>&#60;ul&#62;
+&#60;li&#62;Item 1&#60;&#47;li&#62;
+&#60;li&#62;Item 2&#60;&#47;li&#62;
+&#60;li&#62;Item 3&#60;&#47;li&#62;
+&#60;&#47;ul&#62;
</code></pre>
<p>Defining ordered lists is also very easy:</p>
<pre><code>1. Item 1
@@ -151,50 +136,43 @@ continously counted. If you want a list starting at 2, you could write:</p>
2. Item 3
</code></pre>
<p>and get the following HTML which will render with the numbers 2, 3, 4:</p>
-<pre><code>&lt;ol start=&quot;2&quot;&gt;
-&lt;li&gt;Item 1&lt;/li&gt;
-&lt;li&gt;Item 2&lt;/li&gt;
-&lt;li&gt;Item 3&lt;/li&gt;
-&lt;/ol&gt;
-</code></pre>
-<h2>Code &amp; Blockquote</h2>
-<p>Use the <code>&gt; </code> as a line prefix for defining blockquotes. Blockquotes are
+<pre><code>&#60;ol start="2"&#62;
+&#60;li&#62;Item 1&#60;&#47;li&#62;
+&#60;li&#62;Item 2&#60;&#47;li&#62;
+&#60;li&#62;Item 3&#60;&#47;li&#62;
+&#60;&#47;ol&#62;
+</code></pre>
+<h2 id="code-blockquote">Code &#38; Blockquote</h2>
+<p>Use the <code>&#62;</code> as a line prefix for defining blockquotes. Blockquotes are
interpreted as well. This makes it possible to embed links, headings and even
other quotes into a quote:</p>
-<pre><code>&gt; Hello
-&gt; This is a quote with a [link](http://s01.de/~gottox)
+<pre><code>&#62; Hello
+&#62; This is a quote with a [link](http:&#47;&#47;s01.de&#47;~gottox)
</code></pre>
<p>Result:
-</p>
-<pre><code>&lt;blockquote&gt;&lt;p&gt;
-Hello
-This is a quote with a &lt;a href=&quot;http://s01.de/~gottox&quot;&gt;link&lt;/a&gt;&lt;/p&gt;
-&lt;/blockquote&gt;
-</code></pre>
+
+ Hello
+ This is a quote with a link
+ </p>
<p>You can define a code block with a leading Tab or with <strong>4</strong> leading spaces</p>
-<pre><code> this.is(code)
+<pre><code> this.is(code)
this.is(code, too)
</code></pre>
<p>Result:
-</p>
-<pre><code>&lt;pre&gt;&lt;code&gt;this.is(code)&lt;/code&gt;&lt;/pre&gt;
-&lt;pre&gt;&lt;code&gt;this.is(code, too)
-&lt;/code&gt;&lt;/pre&gt;
-</code></pre>
-<p>Please note that you can't use HTML or smu syntax in a code block.</p>
+ this.is(code)
+ this.is(code, too)
+ </p>
+<p>Please note that you can&#8217;t use HTML or smu syntax in a code block.</p>
<p>Another way to write code blocks is to use code fences:</p>
<pre><code>```json
-{&quot;some&quot;: &quot;code&quot;}
+{"some": "code"}
```
</code></pre>
-<p>This has two advantages:</p>
-
-<ul>
-<li>The optional language identifier will be turned into a <code>language-</code> class name</li>
-<li>You can keep the original indentation which helps when doing copy &amp; paste</li>
-</ul>
-<h2>Tables</h2>
+<p>This has two advantages:
+* The optional language identifier will be turned into a <code>language-</code> class name
+* You can keep the original indentation which helps when doing copy &#38; paste</p>
+<h2 id="tables">Tables</h2>
<p>Tables can be generated with the following syntax:</p>
<pre><code>| Heading1 | Heading2 |
| -------- | -------- |
@@ -213,41 +191,48 @@ the table body.</p>
| :------- | :------: | -------: |
| Left | Center | Right |
</code></pre>
-<h2>Other interesting stuff</h2>
+<h2 id="footnotes">Footnotes</h2>
+<p>Here is an example of using Markdown footnotes<sup id="fnref1"><a href="#fn1" rel="footnote">1</a></sup>. And incase you were looking for more examples, here is another one<sup id="fnref2"><a href="#fn2" rel="footnote">2</a></sup>.</p>
+<h2 id="other-interesting-stuff">Other interesting stuff</h2>
<ul>
<li><p>to insert a horizontal rule simple add <code>- - -</code> into an empty line:</p>
-<pre><code>Hello
-- - -
-Hello2
-</code></pre>
+<p>Hello</p>
+<hr/>
+<p>Hello2</p>
<p>Result:
-</p>
-<pre><code>&lt;p&gt;
+
Hello
-&lt;hr /&gt;
-</code></pre>
-<pre><code>Hello2&lt;/p&gt;
-</code></pre>
-</li>
+</p>
+<p>Hello2</p></li>
<li><p>Any ASCII punctuation character may escaped by precedeing them with a
backslash to avoid them being interpreted:</p>
-<pre><code>!&quot;#$%&amp;'()*+,-./:;&lt;=&gt;?@[]^_`{|}~\
-</code></pre>
-</li>
+<p>!&#8221;#$%&#38;&#8217;()*+,-.&#47;:;&#60;=&#62;?@[]^_`{|}~\</p></li>
<li><p>To force a linebreak simple add two spaces to the end of the line:</p>
-<pre><code>No linebreak
+<p>No linebreak
here.
-But here is
-one.
-</code></pre>
-</li>
+But here is<br/>
+one.</p></li>
</ul>
-<h2>embed HTML</h2>
+<h2 id="embed-html">embed HTML</h2>
<p>You can include arbitrary HTML code in your documents. The HTML will be
passed through to the resulting document without modification. This is a good
-way to work around features that are missing in smu. If you don't want this
+way to work around features that are missing in smu. If you don&#8217;t want this
behaviour, use the <code>-n</code> flag when executing smu to stricly escape the HTML
tags.</p>
+<div class="footnotes">
+<hr/>
+<ol>
+
+<li id="fn1">
+<p>This is the first footnote&#160;<a href="#fnref1" rev="footnote">&#8617;</a></p>
+</li>
+
+<li id="fn2">
+<p>Just like I promised - another footnote example&#160;<a href="#fnref2" rev="footnote">&#8617;</a></p>
+</li>
+
+</ol>
+</div>
<footer role="contentinfo">
<hr>
<h3 id="menu">Menu Navigation</h3>
diff --git a/build/openbsd/index.html b/build/openbsd/index.html
index dc58675..999917a 100644
--- a/build/openbsd/index.html
+++ b/build/openbsd/index.html
@@ -7,7 +7,7 @@
<title>Running `barf` on OpenBSD</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}</style>
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}.footnotes{font-size:90%;}</style>
</head>
<nav>
@@ -15,10 +15,10 @@
</nav>
<main>
-<h1>Running <code>barf</code> on OpenBSD</h1>
+<h1 id="running-on-openbsd">Running <code>barf</code> on OpenBSD</h1>
<p>2023-08-12</p>
-<p>The <code>barf</code> project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux/GNU tools, but I also need to support OpenBSD since that is my personal operating system of choice.</p>
-<h2>Download Packages</h2>
+<p>The <code>barf</code> project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux&#47;GNU tools, but I also need to support OpenBSD since that is my personal operating system of choice.</p>
+<h2 id="download-packages">Download Packages</h2>
<p>Along with your Markdown parser of choice (<code>barf</code> assumes you will be using my version of <a href="https://git.sr.ht/~bt/smu">smu</a>) you will also need to install the required packages on your OpenBSD system:</p>
<pre><code>doas pkg_add rsync coreutils gsed cmake gcc
</code></pre>
diff --git a/build/qol/index.html b/build/qol/index.html
index bdebf62..bf38b42 100644
--- a/build/qol/index.html
+++ b/build/qol/index.html
@@ -7,7 +7,7 @@
<title>Quality of Life Improvements</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}</style>
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}.footnotes{font-size:90%;}</style>
</head>
<nav>
@@ -15,9 +15,9 @@
</nav>
<main>
-<h1>Quality of Life Improvements</h1>
+<h1 id="quality-of-life-improvements">Quality of Life Improvements</h1>
<p>2024-06-06</p>
-<p>I haven't circled back to <code>barf</code> in quite a bit of time, so I'm happy to announce a small update mainly focused on quality of life improvements! I'll keep things brief and get right into the core changes:</p>
+<p>I haven&#8217;t circled back to <code>barf</code> in quite a bit of time, so I&#8217;m happy to announce a small update mainly focused on quality of life improvements! I&#8217;ll keep things brief and get right into the core changes:</p>
<p><strong>Automatic detection of your operating system (supports Linux, macOS and OpenBSD currently)</strong></p>
<ul>
<li><code>barf</code> now checks your current OS and sets aliases accordingly</li>
@@ -31,7 +31,11 @@
<ul>
<li>You now only need to set your main domain at the top of the core <code>barf</code> file.</li>
</ul>
-<p>That's it really! I've also updated the original blog posts about setting up <code>barf</code> on macOS and OpenBSD to reflect these changes.</p>
+<p><strong>Swapped out <code>smu</code> for <code>lowdown</code></strong></p>
+<ul>
+<li>The default Markdown parser is now set to <code>lowdown</code>. The original parser (<code>smu</code>) is great, but I wanted to make the project simpler by avoiding users to clone and build a separate package.</li>
+</ul>
+<p>That&#8217;s it really! I&#8217;ve also updated the original blog posts about setting up <code>barf</code> on macOS and OpenBSD to reflect these changes.</p>
<p>Cheers!</p>
<footer role="contentinfo">
<hr>
diff --git a/build/rss.xml b/build/rss.xml
index 992412c..ed78ca1 100644
--- a/build/rss.xml
+++ b/build/rss.xml
@@ -4,15 +4,15 @@
<title>barf</title>
<link>https://barf.btxx.org/rss.xml</link>
<description>Feed description here</description>
- <lastBuildDate>Thu, 06 Jun 2024 14:08:02 +0000</lastBuildDate>
- <pubDate>Thu, 06 Jun 2024 14:08:02 +0000</pubDate>
+ <lastBuildDate>Fri, 07 Jun 2024 14:26:51 +0000</lastBuildDate>
+ <pubDate>Fri, 07 Jun 2024 14:26:51 +0000</pubDate>
<generator>Custom RSS Generator</generator>
<ttl>1800</ttl>
<item>
<title>Quality of Life Improvements</title>
- <description>&lt;h1&gt;Quality of Life Improvements&lt;/h1&gt;
+ <description>&lt;h1 id=&quot;quality-of-life-improvements&quot;&gt;Quality of Life Improvements&lt;/h1&gt;
&lt;p&gt;2024-06-06&lt;/p&gt;
-&lt;p&gt;I haven&#39;t circled back to &lt;code&gt;barf&lt;/code&gt; in quite a bit of time, so I&#39;m happy to announce a small update mainly focused on quality of life improvements! I&#39;ll keep things brief and get right into the core changes:&lt;/p&gt;
+&lt;p&gt;I haven&amp;#8217;t circled back to &lt;code&gt;barf&lt;/code&gt; in quite a bit of time, so I&amp;#8217;m happy to announce a small update mainly focused on quality of life improvements! I&amp;#8217;ll keep things brief and get right into the core changes:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Automatic detection of your operating system (supports Linux, macOS and OpenBSD currently)&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;barf&lt;/code&gt; now checks your current OS and sets aliases accordingly&lt;/li&gt;
@@ -26,7 +26,11 @@
&lt;ul&gt;
&lt;li&gt;You now only need to set your main domain at the top of the core &lt;code&gt;barf&lt;/code&gt; file.&lt;/li&gt;
&lt;/ul&gt;
-&lt;p&gt;That&#39;s it really! I&#39;ve also updated the original blog posts about setting up &lt;code&gt;barf&lt;/code&gt; on macOS and OpenBSD to reflect these changes.&lt;/p&gt;
+&lt;p&gt;&lt;strong&gt;Swapped out &lt;code&gt;smu&lt;/code&gt; for &lt;code&gt;lowdown&lt;/code&gt;&lt;/strong&gt;&lt;/p&gt;
+&lt;ul&gt;
+&lt;li&gt;The default Markdown parser is now set to &lt;code&gt;lowdown&lt;/code&gt;. The original parser (&lt;code&gt;smu&lt;/code&gt;) is great, but I wanted to make the project simpler by avoiding users to clone and build a separate package.&lt;/li&gt;
+&lt;/ul&gt;
+&lt;p&gt;That&amp;#8217;s it really! I&amp;#8217;ve also updated the original blog posts about setting up &lt;code&gt;barf&lt;/code&gt; on macOS and OpenBSD to reflect these changes.&lt;/p&gt;
&lt;p&gt;Cheers!&lt;/p&gt;</description>
<link>https://barf.btxx.org/qol</link>
<guid isPermaLink="false">https://barf.btxx.org/qol</guid>
@@ -34,10 +38,10 @@
</item>
<item>
<title>Running `barf` on OpenBSD</title>
- <description>&lt;h1&gt;Running &lt;code&gt;barf&lt;/code&gt; on OpenBSD&lt;/h1&gt;
+ <description>&lt;h1 id=&quot;running-on-openbsd&quot;&gt;Running &lt;code&gt;barf&lt;/code&gt; on OpenBSD&lt;/h1&gt;
&lt;p&gt;2023-08-12&lt;/p&gt;
-&lt;p&gt;The &lt;code&gt;barf&lt;/code&gt; project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux/GNU tools, but I also need to support OpenBSD since that is my personal operating system of choice.&lt;/p&gt;
-&lt;h2&gt;Download Packages&lt;/h2&gt;
+&lt;p&gt;The &lt;code&gt;barf&lt;/code&gt; project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux&amp;#47;GNU tools, but I also need to support OpenBSD since that is my personal operating system of choice.&lt;/p&gt;
+&lt;h2 id=&quot;download-packages&quot;&gt;Download Packages&lt;/h2&gt;
&lt;p&gt;Along with your Markdown parser of choice (&lt;code&gt;barf&lt;/code&gt; assumes you will be using my version of &lt;a href=&quot;https://git.sr.ht/~bt/smu&quot;&gt;smu&lt;/a&gt;) you will also need to install the required packages on your OpenBSD system:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;doas pkg_add rsync coreutils gsed cmake gcc
&lt;/code&gt;&lt;/pre&gt;
@@ -48,21 +52,21 @@
</item>
<item>
<title>Markdown Examples in barf</title>
- <description>&lt;h1&gt;Markdown Examples in barf&lt;/h1&gt;
+ <description>&lt;h1 id=&quot;markdown-examples-in-barf&quot;&gt;Markdown Examples in barf&lt;/h1&gt;
&lt;p&gt;2023-01-05&lt;/p&gt;
-&lt;p&gt;This following was lifted from &lt;a href=&quot;https://github.com/karlb/smu&quot;&gt;https://github.com/karlb/smu&lt;/a&gt;&lt;/p&gt;
-&lt;h1&gt;&lt;code&gt;smu&lt;/code&gt; Syntax&lt;/h1&gt;
+&lt;p&gt;This following was lifted from &lt;a href=&quot;https://github.com/karlb/smu&quot;&gt;https:&amp;#47;&amp;#47;github.com&amp;#47;karlb&amp;#47;smu&lt;/a&gt;&lt;/p&gt;
+&lt;h1 id=&quot;syntax&quot;&gt;&lt;code&gt;smu&lt;/code&gt; Syntax&lt;/h1&gt;
&lt;p&gt;smu was started as a rewrite of
&lt;a href=&quot;http://daringfireball.net/projects/markdown/&quot;&gt;markdown&lt;/a&gt; but became something
more lightweight and consistent. It differs from &lt;a href=&quot;https://commonmark.org/&quot;&gt;CommonMark&lt;/a&gt; in the following ways:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;No support for &lt;em&gt;reference style links&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Stricter indentation rules for lists&lt;/li&gt;
-&lt;li&gt;Lists don&#39;t end paragraphs by themselves (blank line needed)&lt;/li&gt;
-&lt;li&gt;Horizontal rules (&lt;code&gt;&amp;lt;hr&amp;gt;&lt;/code&gt;) must use &lt;code&gt;- - -&lt;/code&gt; as syntax&lt;/li&gt;
+&lt;li&gt;Lists don&amp;#8217;t end paragraphs by themselves (blank line needed)&lt;/li&gt;
+&lt;li&gt;Horizontal rules (&lt;code&gt;&amp;#60;hr&amp;#62;&lt;/code&gt;) must use &lt;code&gt;- - -&lt;/code&gt; as syntax&lt;/li&gt;
&lt;li&gt;Code fences have stricter syntax&lt;/li&gt;
&lt;/ul&gt;
-&lt;p&gt;Patches that increase the CommonMark compatibility are welcome as long as they don&#39;t increase the code complexity significantly.&lt;/p&gt;
+&lt;p&gt;Patches that increase the CommonMark compatibility are welcome as long as they don&amp;#8217;t increase the code complexity significantly.&lt;/p&gt;
&lt;p&gt;This project is a fork of the &lt;a href=&quot;https://github.com/gottox/smu&quot;&gt;original smu&lt;/a&gt; by
&lt;a href=&quot;https://eboland.de&quot;&gt;Enno Boland (gottox)&lt;/a&gt;. The main differences to the
original smu are:&lt;/p&gt;
@@ -76,55 +80,40 @@ original smu are:&lt;/p&gt;
&lt;li&gt;Keep HTML comments in output&lt;/li&gt;
&lt;li&gt;Improved spec compliance for lists&lt;/li&gt;
&lt;li&gt;Nesting code block in blockquotes works&lt;/li&gt;
-&lt;li&gt;&quot;Empty&quot; lines in lists behave identically, no matter how much whitespace they contain&lt;/li&gt;
+&lt;li&gt;&amp;#8220;Empty&amp;#8221; lines in lists behave identically, no matter how much whitespace they contain&lt;/li&gt;
&lt;li&gt;No backslash escapes in code blocks&lt;/li&gt;
&lt;li&gt;Use first number as start number for ordered lists&lt;/li&gt;
-&lt;/ul&gt;
-&lt;/li&gt;
+&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Added a simple test suite to check for compliance and avoid regressions&lt;/li&gt;
&lt;/ul&gt;
-&lt;h2&gt;Inline patterns&lt;/h2&gt;
+&lt;h2 id=&quot;inline-patterns&quot;&gt;Inline patterns&lt;/h2&gt;
&lt;p&gt;There are several patterns you can use to highlight your text:&lt;/p&gt;
&lt;ul&gt;
-&lt;li&gt;&lt;p&gt;Emphasis&lt;/p&gt;
-
+&lt;li&gt;&lt;p&gt;Emphasis
&lt;ul&gt;
&lt;li&gt;Surround your text with &lt;code&gt;*&lt;/code&gt; or &lt;code&gt;_&lt;/code&gt; to get &lt;em&gt;emphasised&lt;/em&gt; text:
-&lt;pre&gt;&lt;code&gt;This *is* cool.
-This _is_ cool, too.
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
+This &lt;em&gt;is&lt;/em&gt; cool.
+This &lt;em&gt;is&lt;/em&gt; cool, too.&lt;/li&gt;
&lt;li&gt;Surround your text with &lt;code&gt;**&lt;/code&gt; or &lt;code&gt;__&lt;/code&gt; to get &lt;strong&gt;strong&lt;/strong&gt; text:
-&lt;pre&gt;&lt;code&gt;This **is** cool.
-This __is__ cool, too.
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
+This &lt;strong&gt;is&lt;/strong&gt; cool.
+This &lt;strong&gt;is&lt;/strong&gt; cool, too.&lt;/li&gt;
&lt;li&gt;Surround your text with &lt;code&gt;***&lt;/code&gt; or &lt;code&gt;___&lt;/code&gt; to get &lt;strong&gt;&lt;em&gt;strong and emphasised&lt;/em&gt;&lt;/strong&gt; text:
-&lt;pre&gt;&lt;code&gt;This ***is*** cool.
-This ___is___ cool, too.
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
-&lt;li&gt;But this example won&#39;t work as expected:
-&lt;pre&gt;&lt;code&gt;***Hello** you*
-&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;This is a wontfix bug because it would make the source too complex.
+This &lt;strong&gt;&lt;em&gt;is&lt;/em&gt;&lt;/strong&gt; cool.
+This &lt;strong&gt;&lt;em&gt;is&lt;/em&gt;&lt;/strong&gt; cool, too.&lt;/li&gt;
+&lt;li&gt;But this example won&amp;#8217;t work as expected:
+*&lt;strong&gt;Hello&lt;/strong&gt; you*
+This is a wontfix bug because it would make the source too complex.
Use this instead:
-&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;***Hello*** *you*
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
-&lt;/ul&gt;
-&lt;/li&gt;
+&lt;strong&gt;&lt;em&gt;Hello&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;you&lt;/em&gt;&lt;/li&gt;
+&lt;/ul&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;inline Code&lt;/p&gt;
&lt;p&gt;You can produce inline code by surrounding it with backticks.&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;Use `rm -rf /` if you&#39;re a N00b.
-Use ``rm -rf /`` if you&#39;re a N00b.
-Use ```rm -rf /``` if you&#39;re a N00b.
-&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;Double and triple backticks can be used if the code itself contains backticks.&lt;/p&gt;
-&lt;/li&gt;
+&lt;p&gt;Use &lt;code&gt;rm -rf &amp;#47;&lt;/code&gt; if you&amp;#8217;re a N00b.
+Use &lt;code&gt;rm -rf &amp;#47;&lt;/code&gt; if you&amp;#8217;re a N00b.
+Use &lt;code&gt;rm -rf &amp;#47;&lt;/code&gt; if you&amp;#8217;re a N00b.&lt;/p&gt;
+&lt;p&gt;Double and triple backticks can be used if the code itself contains backticks.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
-&lt;h2&gt;Titles&lt;/h2&gt;
+&lt;h2 id=&quot;titles&quot;&gt;Titles&lt;/h2&gt;
&lt;p&gt;Creating titles in smu is very easy. There are two different syntax styles. The
first is underlining with at least three characters:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Heading
@@ -135,10 +124,10 @@ Topic
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This is very intuitive and self explaining. The resulting sourcecode looks like
this:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;h1&amp;gt;Heading&amp;lt;/h1&amp;gt;
-&amp;lt;h2&amp;gt;Topic&amp;lt;/h2&amp;gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;h1&amp;#62;Heading&amp;#60;&amp;#47;h1&amp;#62;
+&amp;#60;h2&amp;#62;Topic&amp;#60;&amp;#47;h2&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;Use the following prefixes if you don&#39;t like underlining:&lt;/p&gt;
+&lt;p&gt;Use the following prefixes if you don&amp;#8217;t like underlining:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# h1
## h2
### h3
@@ -146,31 +135,31 @@ this:&lt;/p&gt;
##### h5
###### h6
&lt;/code&gt;&lt;/pre&gt;
-&lt;h2&gt;Links&lt;/h2&gt;
-&lt;p&gt;The simplest way to define a link is with simple &lt;code&gt;&amp;lt;&amp;gt;&lt;/code&gt;.&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;http://s01.de&amp;gt;
+&lt;h2 id=&quot;links&quot;&gt;Links&lt;/h2&gt;
+&lt;p&gt;The simplest way to define a link is with simple &lt;code&gt;&amp;#60;&amp;#62;&lt;/code&gt;.&lt;/p&gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;http:&amp;#47;&amp;#47;s01.de&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;You can do the same for E-Mail addresses:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;yourname@s01.de&amp;gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;yourname@s01.de&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;If you want to define a label for the url, you have to use a different syntax&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;[smu - simple mark up](http://s01.de/~gottox/index.cgi/proj_smu)
+&lt;pre&gt;&lt;code&gt;[smu - simple mark up](http:&amp;#47;&amp;#47;s01.de&amp;#47;~gottox&amp;#47;index.cgi&amp;#47;proj_smu)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The resulting HTML-Code&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;a href=&amp;quot;http://s01.de/~gottox/index.cgi/proj_smu&amp;quot;&amp;gt;smu - simple mark up&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;a href=&quot;http:&amp;#47;&amp;#47;s01.de&amp;#47;~gottox&amp;#47;index.cgi&amp;#47;proj_smu&quot;&amp;#62;smu - simple mark up&amp;#60;&amp;#47;a&amp;#62;&amp;#60;&amp;#47;p&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
-&lt;h2&gt;Lists&lt;/h2&gt;
+&lt;h2 id=&quot;lists&quot;&gt;Lists&lt;/h2&gt;
&lt;p&gt;Defining lists is very straightforward:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;* Item 1
* Item 2
* Item 3
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Result:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;ul&amp;gt;
-&amp;lt;li&amp;gt;Item 1&amp;lt;/li&amp;gt;
-&amp;lt;li&amp;gt;Item 2&amp;lt;/li&amp;gt;
-&amp;lt;li&amp;gt;Item 3&amp;lt;/li&amp;gt;
-&amp;lt;/ul&amp;gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;ul&amp;#62;
+&amp;#60;li&amp;#62;Item 1&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;li&amp;#62;Item 2&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;li&amp;#62;Item 3&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;&amp;#47;ul&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Defining ordered lists is also very easy:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;1. Item 1
@@ -184,50 +173,43 @@ continously counted. If you want a list starting at 2, you could write:&lt;/p&gt
2. Item 3
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and get the following HTML which will render with the numbers 2, 3, 4:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;ol start=&amp;quot;2&amp;quot;&amp;gt;
-&amp;lt;li&amp;gt;Item 1&amp;lt;/li&amp;gt;
-&amp;lt;li&amp;gt;Item 2&amp;lt;/li&amp;gt;
-&amp;lt;li&amp;gt;Item 3&amp;lt;/li&amp;gt;
-&amp;lt;/ol&amp;gt;
-&lt;/code&gt;&lt;/pre&gt;
-&lt;h2&gt;Code &amp;amp; Blockquote&lt;/h2&gt;
-&lt;p&gt;Use the &lt;code&gt;&amp;gt; &lt;/code&gt; as a line prefix for defining blockquotes. Blockquotes are
+&lt;pre&gt;&lt;code&gt;&amp;#60;ol start=&quot;2&quot;&amp;#62;
+&amp;#60;li&amp;#62;Item 1&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;li&amp;#62;Item 2&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;li&amp;#62;Item 3&amp;#60;&amp;#47;li&amp;#62;
+&amp;#60;&amp;#47;ol&amp;#62;
+&lt;/code&gt;&lt;/pre&gt;
+&lt;h2 id=&quot;code-blockquote&quot;&gt;Code &amp;#38; Blockquote&lt;/h2&gt;
+&lt;p&gt;Use the &lt;code&gt;&amp;#62;&lt;/code&gt; as a line prefix for defining blockquotes. Blockquotes are
interpreted as well. This makes it possible to embed links, headings and even
other quotes into a quote:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;gt; Hello
-&amp;gt; This is a quote with a [link](http://s01.de/~gottox)
+&lt;pre&gt;&lt;code&gt;&amp;#62; Hello
+&amp;#62; This is a quote with a [link](http:&amp;#47;&amp;#47;s01.de&amp;#47;~gottox)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Result:
-&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;
-Hello
-This is a quote with a &amp;lt;a href=&amp;quot;http://s01.de/~gottox&amp;quot;&amp;gt;link&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;
-&amp;lt;/blockquote&amp;gt;
-&lt;/code&gt;&lt;/pre&gt;
+
+ Hello
+ This is a quote with a link
+ &lt;/p&gt;
&lt;p&gt;You can define a code block with a leading Tab or with &lt;strong&gt;4&lt;/strong&gt; leading spaces&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt; this.is(code)
+&lt;pre&gt;&lt;code&gt; this.is(code)
this.is(code, too)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Result:
-&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;this.is(code)&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;
-&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;this.is(code, too)
-&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;
-&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;Please note that you can&#39;t use HTML or smu syntax in a code block.&lt;/p&gt;
+ this.is(code)
+ this.is(code, too)
+ &lt;/p&gt;
+&lt;p&gt;Please note that you can&amp;#8217;t use HTML or smu syntax in a code block.&lt;/p&gt;
&lt;p&gt;Another way to write code blocks is to use code fences:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;```json
-{&amp;quot;some&amp;quot;: &amp;quot;code&amp;quot;}
+{&quot;some&quot;: &quot;code&quot;}
```
&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;This has two advantages:&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;The optional language identifier will be turned into a &lt;code&gt;language-&lt;/code&gt; class name&lt;/li&gt;
-&lt;li&gt;You can keep the original indentation which helps when doing copy &amp;amp; paste&lt;/li&gt;
-&lt;/ul&gt;
-&lt;h2&gt;Tables&lt;/h2&gt;
+&lt;p&gt;This has two advantages:
+* The optional language identifier will be turned into a &lt;code&gt;language-&lt;/code&gt; class name
+* You can keep the original indentation which helps when doing copy &amp;#38; paste&lt;/p&gt;
+&lt;h2 id=&quot;tables&quot;&gt;Tables&lt;/h2&gt;
&lt;p&gt;Tables can be generated with the following syntax:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;| Heading1 | Heading2 |
| -------- | -------- |
@@ -246,51 +228,58 @@ the table body.&lt;/p&gt;
| :------- | :------: | -------: |
| Left | Center | Right |
&lt;/code&gt;&lt;/pre&gt;
-&lt;h2&gt;Other interesting stuff&lt;/h2&gt;
+&lt;h2 id=&quot;footnotes&quot;&gt;Footnotes&lt;/h2&gt;
+&lt;p&gt;Here is an example of using Markdown footnotes&lt;sup id=&quot;fnref1&quot;&gt;&lt;a href=&quot;#fn1&quot; rel=&quot;footnote&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;. And incase you were looking for more examples, here is another one&lt;sup id=&quot;fnref2&quot;&gt;&lt;a href=&quot;#fn2&quot; rel=&quot;footnote&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;
+&lt;h2 id=&quot;other-interesting-stuff&quot;&gt;Other interesting stuff&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;to insert a horizontal rule simple add &lt;code&gt;- - -&lt;/code&gt; into an empty line:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;Hello
-- - -
-Hello2
-&lt;/code&gt;&lt;/pre&gt;
+&lt;p&gt;Hello&lt;/p&gt;
+&lt;hr/&gt;
+&lt;p&gt;Hello2&lt;/p&gt;
&lt;p&gt;Result:
-&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;p&amp;gt;
+
Hello
-&amp;lt;hr /&amp;gt;
-&lt;/code&gt;&lt;/pre&gt;
-&lt;pre&gt;&lt;code&gt;Hello2&amp;lt;/p&amp;gt;
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
+&lt;/p&gt;
+&lt;p&gt;Hello2&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Any ASCII punctuation character may escaped by precedeing them with a
backslash to avoid them being interpreted:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;!&amp;quot;#$%&amp;amp;&#39;()*+,-./:;&amp;lt;=&amp;gt;?@[]^_`{|}~\
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
+&lt;p&gt;!&amp;#8221;#$%&amp;#38;&amp;#8217;()*+,-.&amp;#47;:;&amp;#60;=&amp;#62;?@[]^_`{|}~\&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To force a linebreak simple add two spaces to the end of the line:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;No linebreak
+&lt;p&gt;No linebreak
here.
-But here is
-one.
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/li&gt;
+But here is&lt;br/&gt;
+one.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
-&lt;h2&gt;embed HTML&lt;/h2&gt;
+&lt;h2 id=&quot;embed-html&quot;&gt;embed HTML&lt;/h2&gt;
&lt;p&gt;You can include arbitrary HTML code in your documents. The HTML will be
passed through to the resulting document without modification. This is a good
-way to work around features that are missing in smu. If you don&#39;t want this
+way to work around features that are missing in smu. If you don&amp;#8217;t want this
behaviour, use the &lt;code&gt;-n&lt;/code&gt; flag when executing smu to stricly escape the HTML
-tags.&lt;/p&gt;</description>
+tags.&lt;/p&gt;
+&lt;div class=&quot;footnotes&quot;&gt;
+&lt;hr/&gt;
+&lt;ol&gt;
+
+&lt;li id=&quot;fn1&quot;&gt;
+&lt;p&gt;This is the first footnote&amp;#160;&lt;a href=&quot;#fnref1&quot; rev=&quot;footnote&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
+&lt;/li&gt;
+
+&lt;li id=&quot;fn2&quot;&gt;
+&lt;p&gt;Just like I promised - another footnote example&amp;#160;&lt;a href=&quot;#fnref2&quot; rev=&quot;footnote&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
+&lt;/li&gt;
+
+&lt;/ol&gt;
+&lt;/div&gt;</description>
<link>https://barf.btxx.org/markdown-examples</link>
<guid isPermaLink="false">https://barf.btxx.org/markdown-examples</guid>
<pubDate>Thu, 05 Jan 2023 00:00:00 +0000</pubDate>
</item>
<item>
<title>Running `barf` on MacOS</title>
- <description>&lt;h1&gt;Running &lt;code&gt;barf&lt;/code&gt; on MacOS&lt;/h1&gt;
+ <description>&lt;h1 id=&quot;running-on-macos&quot;&gt;Running &lt;code&gt;barf&lt;/code&gt; on MacOS&lt;/h1&gt;
&lt;p&gt;2023-01-18&lt;/p&gt;
-&lt;p&gt;The &lt;code&gt;barf&lt;/code&gt; project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux/GNU tools, but that doesn&#39;t mean MacOS needs to be left out in the cold.&lt;/p&gt;
-&lt;h2&gt;Download Packages&lt;/h2&gt;
+&lt;p&gt;The &lt;code&gt;barf&lt;/code&gt; project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux&amp;#47;GNU tools, but that doesn&amp;#8217;t mean MacOS needs to be left out in the cold.&lt;/p&gt;
+&lt;h2 id=&quot;download-packages&quot;&gt;Download Packages&lt;/h2&gt;
&lt;p&gt;This walkthrough assumes that you already have &lt;a href=&quot;https://brew.sh/&quot;&gt;homebrew&lt;/a&gt; installed on your machine.&lt;/p&gt;
&lt;p&gt;You will need to install the GNU versions of both &lt;code&gt;date&lt;/code&gt; and &lt;code&gt;sed&lt;/code&gt; in order to avoid breaking things when &lt;code&gt;barf&lt;/code&gt; tries to build.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;brew install coreutils
@@ -303,39 +292,40 @@ brew install gnu-sed
</item>
<item>
<title>Supporting Basic Dark Mode</title>
- <description>&lt;h1&gt;Supporting Basic Dark Mode&lt;/h1&gt;
+ <description>&lt;h1 id=&quot;supporting-basic-dark-mode&quot;&gt;Supporting Basic Dark Mode&lt;/h1&gt;
&lt;p&gt;2023-03-07&lt;/p&gt;
&lt;p&gt;The default &lt;code&gt;barf&lt;/code&gt; site generator now supports basic dark mode functionality. This has been achieved by including the standard &lt;code&gt;color-scheme&lt;/code&gt; meta tag in the core &lt;code&gt;header.html&lt;/code&gt; file:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;meta name=&amp;quot;color-scheme&amp;quot; content=&amp;quot;dark light&amp;quot;&amp;gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;meta name=&quot;color-scheme&quot; content=&quot;dark light&quot;&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This change also ships with some minor updates to the default &lt;code&gt;blockquote&lt;/code&gt; design. You can see an example below:&lt;/p&gt;
-&lt;blockquote&gt;&lt;p&gt;This is a really &lt;em&gt;cool&lt;/em&gt; blockquote&lt;/p&gt;
+&lt;blockquote&gt;
+&lt;p&gt;This is a really &lt;em&gt;cool&lt;/em&gt; blockquote&lt;/p&gt;
&lt;/blockquote&gt;
-&lt;h2&gt;Minor Caveat&lt;/h2&gt;
-&lt;p&gt;Unfortunately, Safari still has minor &lt;code&gt;ahref&lt;/code&gt; / link color issue when defaulting to browser dark mode. If this is a problem for your own build of &lt;code&gt;barf&lt;/code&gt;, take a look at a &lt;a href=&quot;https://bt.ht/safari-default-dark-mode/&quot;&gt;solution I wrote about here&lt;/a&gt;.&lt;/p&gt;
-&lt;p&gt;Personally, I can&#39;t be bothered to add that extra code to this project. The Safari team needs to get their shit together and fix such a simple bug. Plus, you shouldn&#39;t be using Safari anyway - it&#39;s proprietary garbage.&lt;/p&gt;</description>
+&lt;h2 id=&quot;minor-caveat&quot;&gt;Minor Caveat&lt;/h2&gt;
+&lt;p&gt;Unfortunately, Safari still has minor &lt;code&gt;ahref&lt;/code&gt; &amp;#47; link color issue when defaulting to browser dark mode. If this is a problem for your own build of &lt;code&gt;barf&lt;/code&gt;, take a look at a &lt;a href=&quot;https://bt.ht/safari-default-dark-mode/&quot;&gt;solution I wrote about here&lt;/a&gt;.&lt;/p&gt;
+&lt;p&gt;Personally, I can&amp;#8217;t be bothered to add that extra code to this project. The Safari team needs to get their shit together and fix such a simple bug. Plus, you shouldn&amp;#8217;t be using Safari anyway - it&amp;#8217;s proprietary garbage.&lt;/p&gt;</description>
<link>https://barf.btxx.org/dark-mode</link>
<guid isPermaLink="false">https://barf.btxx.org/dark-mode</guid>
<pubDate>Tue, 07 Mar 2023 00:00:00 +0000</pubDate>
</item>
<item>
<title>Cleaning Up barf's Structure</title>
- <description>&lt;h1&gt;Cleaning Up barf&#39;s Structure&lt;/h1&gt;
+ <description>&lt;h1 id=&quot;cleaning-up-barfs-structure&quot;&gt;Cleaning Up barf&amp;#8217;s Structure&lt;/h1&gt;
&lt;p&gt;2023-10-09&lt;/p&gt;
&lt;p&gt;Things probably look a little different around here. Both in terms of this demo site &lt;em&gt;and&lt;/em&gt; the core &lt;code&gt;barf&lt;/code&gt; files itself.&lt;/p&gt;
-&lt;p&gt;This project was always intended to be focused on Linux platforms. So, I&#39;ve removed the included &lt;code&gt;barf_macos&lt;/code&gt; and &lt;code&gt;barf_openbsd&lt;/code&gt; files to keep the generator more streamlined. But have no fear! Instructions for both Mac and OpenBSD can still be found on the main blog:&lt;/p&gt;
+&lt;p&gt;This project was always intended to be focused on Linux platforms. So, I&amp;#8217;ve removed the included &lt;code&gt;barf_macos&lt;/code&gt; and &lt;code&gt;barf_openbsd&lt;/code&gt; files to keep the generator more streamlined. But have no fear! Instructions for both Mac and OpenBSD can still be found on the main blog:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;/macos&quot;&gt;Running &lt;code&gt;barf&lt;/code&gt; on MacOS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/openbsd&quot;&gt;Running &lt;code&gt;barf&lt;/code&gt; on OpenBSD&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
-&lt;p&gt;As for the &quot;default&quot; look of &lt;code&gt;barf&lt;/code&gt;, I&#39;ve simplified things further. The total CSS styling now consists of only:&lt;/p&gt;
+&lt;p&gt;As for the &amp;#8220;default&amp;#8221; look of &lt;code&gt;barf&lt;/code&gt;, I&amp;#8217;ve simplified things further. The total CSS styling now consists of only:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;*{box-sizing:border-box;}
body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}
img{max-width:100%;}
pre{overflow:auto;}
&lt;/code&gt;&lt;/pre&gt;
-&lt;p&gt;Users still have the ability to tweak things as much as they&#39;d like, but the standard look should be more than enough for anyone just focusing on writing. Dark mode has also been dropped but is easily added by adding the following inside the &lt;code&gt;head&lt;/code&gt; tags:&lt;/p&gt;
-&lt;pre&gt;&lt;code&gt;&amp;lt;meta name=&amp;quot;color-scheme&amp;quot; content=&amp;quot;dark light&amp;quot;&amp;gt;
+&lt;p&gt;Users still have the ability to tweak things as much as they&amp;#8217;d like, but the standard look should be more than enough for anyone just focusing on writing. Dark mode has also been dropped but is easily added by adding the following inside the &lt;code&gt;head&lt;/code&gt; tags:&lt;/p&gt;
+&lt;pre&gt;&lt;code&gt;&amp;#60;meta name=&quot;color-scheme&quot; content=&quot;dark light&quot;&amp;#62;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Hopefully these changes reduce the overall scope of the project, which was a main point made on the README originally!&lt;/p&gt;</description>
<link>https://barf.btxx.org/cleanup</link>
diff --git a/build/websites/index.html b/build/websites/index.html
index 29715cd..8a06384 100644
--- a/build/websites/index.html
+++ b/build/websites/index.html
@@ -7,7 +7,7 @@
<title>Websites Built with `barf`</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}</style>
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}.footnotes{font-size:90%;}</style>
</head>
<nav>
@@ -15,7 +15,7 @@
</nav>
<main>
-<h1>Websites Built with <code>barf</code></h1>
+<h1 id="websites-built-with-">Websites Built with <code>barf</code></h1>
<p>Send an email to bt [at] btxx [dot] org if you would like me to add your barf-generated website to this list.</p>
<ul>
<li><a href="https://jsfree.org">jsfree.org</a></li>
diff --git a/header.html b/header.html
index 7b95bf6..9c9c6c6 100644
--- a/header.html
+++ b/header.html
@@ -7,7 +7,7 @@
<title>{{TITLE}}</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}</style>
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}.footnotes{font-size:90%;}</style>
</head>
<nav>
diff --git a/index.md b/index.md
index 5451da3..ea67516 100644
--- a/index.md
+++ b/index.md
@@ -2,11 +2,11 @@
**barf is an extremely minimal blog generator.**
-The entire build script is less than 100 lines of shell.
+The entire build script is >170 lines of shell.
It could almost be called "suckless", but probably isn't. It was created for those focused on writing, not tinkering.
-You can learn more by reading the [official README](https://git.btxx.org/barf/about) and view the generated [Atom feed here](/atom.xml)
+You can learn more by reading the [official README](https://git.btxx.org/barf/about).
**barf** = blogs are really fun
@@ -15,16 +15,22 @@ You can learn more by reading the [official README](https://git.btxx.org/barf/ab
### Get setup in 2 minutes
**Install dependencies:**
-* For Linux: `rsync`
-* For macOS: `brew install coreutils gnu-sed`
-* For OpenBSD: `doas pkg_add rsync coreutils gsed cmake gcc`
-**Clone and install the lightweight markdown parser, `smu`**
-* `git clone https://git.btxx.org/smu`
-* `cd smu ; make ; sudo make install`
+For Linux (Alpine example):
-**Clone `barf`:**
-* `git clone https://git.btxx.org/barf`
+ sudo apk add rsync lowdown
+
+For macOS:
+
+ brew install rsync lowdown coreutils gnu-sed
+
+For OpenBSD:
+
+ doas pkg_add rsync lowdown coreutils gsed cmake gcc
+
+**Clone barf:**
+
+ git clone https://git.btxx.org/barf
1. Open project, change the `domain` variable at the top of the core barf file
2. Run: `make build`
diff --git a/posts/markdown-examples.md b/posts/markdown-examples.md
index dc3d2dc..1c2d564 100644
--- a/posts/markdown-examples.md
+++ b/posts/markdown-examples.md
@@ -216,6 +216,11 @@ the table body.
| :------- | :------: | -------: |
| Left | Center | Right |
+Footnotes
+---------
+
+Here is an example of using Markdown footnotes[^1]. And incase you were looking for more examples, here is another one[^2].
+
Other interesting stuff
-----------------------
@@ -252,3 +257,6 @@ passed through to the resulting document without modification. This is a good
way to work around features that are missing in smu. If you don't want this
behaviour, use the `-n` flag when executing smu to stricly escape the HTML
tags.
+
+[^1]: This is the first footnote
+[^2]: Just like I promised - another footnote example
diff --git a/posts/qol.md b/posts/qol.md
index f09694e..57da105 100644
--- a/posts/qol.md
+++ b/posts/qol.md
@@ -17,6 +17,10 @@ I haven't circled back to `barf` in quite a bit of time, so I'm happy to announc
* You now only need to set your main domain at the top of the core `barf` file.
+**Swapped out `smu` for `lowdown`**
+
+* The default Markdown parser is now set to `lowdown`. The original parser (`smu`) is great, but I wanted to make the project simpler by avoiding users to clone and build a separate package.
+
That's it really! I've also updated the original blog posts about setting up `barf` on macOS and OpenBSD to reflect these changes.
Cheers!