summaryrefslogtreecommitdiff
path: root/gemfeed/2023-07-21-gemtexter-2.1.0-lets-gemtext-again-3.md
diff options
context:
space:
mode:
Diffstat (limited to 'gemfeed/2023-07-21-gemtexter-2.1.0-lets-gemtext-again-3.md')
-rw-r--r--gemfeed/2023-07-21-gemtexter-2.1.0-lets-gemtext-again-3.md111
1 files changed, 0 insertions, 111 deletions
diff --git a/gemfeed/2023-07-21-gemtexter-2.1.0-lets-gemtext-again-3.md b/gemfeed/2023-07-21-gemtexter-2.1.0-lets-gemtext-again-3.md
index 6c266d03..a7c8bfae 100644
--- a/gemfeed/2023-07-21-gemtexter-2.1.0-lets-gemtext-again-3.md
+++ b/gemfeed/2023-07-21-gemtexter-2.1.0-lets-gemtext-again-3.md
@@ -109,117 +109,6 @@ Other related posts are:
[2024-10-02 Gemtexter 3.0.0 - Let's Gemtext again⁴](./2024-10-02-gemtexter-3.0.0-lets-gemtext-again-4.md)
[2023-07-21 Gemtexter 2.1.0 - Let's Gemtext again³ (You are currently reading this)](./2023-07-21-gemtexter-2.1.0-lets-gemtext-again-3.md)
[2023-03-25 Gemtexter 2.0.0 - Let's Gemtext again²](./2023-03-25-gemtexter-2.0.0-lets-gemtext-again-2.md)
-# Gemtexter 2.1.0 - Let's Gemtext again³
-
-> Published at 2023-07-21T10:19:31+03:00
-
-I proudly announce that I've released Gemtexter version `2.1.0`. What is Gemtexter? It's my minimalist static site generator for Gemini Gemtext, HTML and Markdown, written in GNU Bash.
-
-[https://codeberg.org/snonux/gemtexter](https://codeberg.org/snonux/gemtexter)
-
-```
--=[ typewriters ]=- 1/98
- .-------.
- .-------. _|~~ ~~ |_
- _|~~ ~~ |_ .-------. =(_|_______|_)
- =(_|_______|_)= _|~~ ~~ |_ |:::::::::|
- |:::::::::| =(_|_______|_) |:::::::[]|
- |:::::::[]| |:::::::::| |o=======.|
- |o=======.| |:::::::[]| `"""""""""`
- jgs `"""""""""` |o=======.|
- mod. by Paul Buetow `"""""""""`
-```
-
-## Table of Contents
-
-* [⇢ Gemtexter 2.1.0 - Let's Gemtext again³](#gemtexter-210---let-s-gemtext-again)
-* [⇢ ⇢ Why Bash?](#why-bash)
-* [⇢ ⇢ Switch to GPL3 license](#switch-to-gpl3-license)
-* [⇢ ⇢ Source code highlighting support](#source-code-highlighting-support)
-* [⇢ ⇢ HTML exact variant](#html-exact-variant)
-* [⇢ ⇢ Use of Hack webfont by default](#use-of-hack-webfont-by-default)
-* [⇢ ⇢ HTML Mastodon verification support](#html-mastodon-verification-support)
-* [⇢ ⇢ More](#more)
-
-## Why Bash?
-
-This project is too complex for a Bash script. Writing it in Bash was to try out how maintainable a "larger" Bash script could be. It's still pretty maintainable and helps me try new Bash tricks here and then!
-
-Let's list what's new!
-
-## Switch to GPL3 license
-
-Many (almost all) of the tools and commands (GNU Bash, GMU Sed, GNU Date, GNU Grep, GNU Source Highlight) used by `Gemtexter` are licensed under the GPL anyway. So why not use the same? This was an easy switch, as I was the only code contributor so far!
-
-## Source code highlighting support
-
-The HTML output now supports source code highlighting, which is pretty neat if your site is about programming. The requirement is to have the `source-highlight` command, which is GNU Source Highlight, to be installed. Once done, you can annotate a bare block with the language to be highlighted. E.g.:
-
-```
- ```bash
- if [ -n "$foo" ]; then
- echo "$foo"
- fi
- ```
-```
-
-The result will look like this (you can see the code highlighting only in the Web version, not in the Geminispace version of this site):
-
-```bash
-if [ -n "$foo" ]; then
- echo "$foo"
-fi
-```
-
-Please run `source-highlight --lang-list` for a list of all supported languages.
-
-## HTML exact variant
-
-Gemtexter is there to convert your Gemini Capsule into other formats, such as HTML and Markdown. An HTML exact variant can now be enabled in the `gemtexter.conf` by adding the line `declare -rx HTML_VARIANT=exact`. The HTML/CSS output changed to reflect a more exact Gemtext appearance and to respect the same spacing as you would see in the Geminispace.
-
-## Use of Hack webfont by default
-
-The Hack web font is a typeface designed explicitly for source code. It's a derivative of the Bitstream Vera and DejaVu Mono lineage, but it features many improvements and refinements that make it better suited to reading and writing code.
-
-The font has distinctive glyphs for every character, which helps to reduce confusion between similar-looking characters. For example, the characters "0" (zero), "O" (capital o), and "o" (lowercase o), or "1" (one), "l" (lowercase L), and "I" (capital i) all have distinct looks in Hack, making it easier to read and understand code at a glance.
-
-Hack is open-source and freely available for use and modification under the MIT License.
-
-## HTML Mastodon verification support
-
-The following link explains how URL verification works in Mastodon:
-
-[https://joinmastodon.org/verification](https://joinmastodon.org/verification)
-
-So we have to hyperlink to the Mastodon profile to be verified and also to include a `rel='me'` into the tag. In order to do that add this to the `gemtexter.conf` (replace the URI to your Mastodon profile accordingly):
-
-```bash
-declare -xr MASTODON_URI='https://fosstodon.org/@snonux'
-```
-
-and add the following into your `index.gmi`:
-
-```
-[Me at Mastodon](https://fosstodon.org/@snonux)
-```
-
-The resulting line in the HTML output will be something as follows:
-
-```html
-<a href='https://fosstodon.org/@snonux' rel='me'>Me at Mastodon</a>
-```
-
-## More
-
-Additionally, there were a couple of bug fixes, refactorings and overall improvements in the documentation made.
-
-E-Mail your comments to `paul@nospam.buetow.org` :-)
-
-Other related posts are:
-
-[2024-10-02 Gemtexter 3.0.0 - Let's Gemtext again⁴](./2024-10-02-gemtexter-3.0.0-lets-gemtext-again-4.md)
-[2023-07-21 Gemtexter 2.1.0 - Let's Gemtext again³ (You are currently reading this)](./2023-07-21-gemtexter-2.1.0-lets-gemtext-again-3.md)
-[2023-03-25 Gemtexter 2.0.0 - Let's Gemtext again²](./2023-03-25-gemtexter-2.0.0-lets-gemtext-again-2.md)
[2022-08-27 Gemtexter 1.1.0 - Let's Gemtext again](./2022-08-27-gemtexter-1.1.0-lets-gemtext-again.md)
[2021-06-05 Gemtexter - One Bash script to rule it all](./2021-06-05-gemtexter-one-bash-script-to-rule-it-all.md)
[2021-04-24 Welcome to the Geminispace](./2021-04-24-welcome-to-the-geminispace.md)