From 2b0906c0c26e09b7eb1096ceec17ddf28308a74c Mon Sep 17 00:00:00 2001 From: Erik Winter Date: Tue, 2 Nov 2021 15:30:16 +0100 Subject: [PATCH] updated doc tags --- doc/a-tiny-subset-of-asciidoc-for-blogging.adoc | 7 +------ doc/code-walkthrough.adoc | 7 +------ doc/why-i-built-my-own-shitty-static-site-generator.adoc | 7 +------ 3 files changed, 3 insertions(+), 18 deletions(-) diff --git a/doc/a-tiny-subset-of-asciidoc-for-blogging.adoc b/doc/a-tiny-subset-of-asciidoc-for-blogging.adoc index d55de5d..7d0e7f5 100644 --- a/doc/a-tiny-subset-of-asciidoc-for-blogging.adoc +++ b/doc/a-tiny-subset-of-asciidoc-for-blogging.adoc @@ -1,11 +1,6 @@ = A Tiny Subset of Asciidoc for Blogging -Erik Winter 2020-12-01 -:kind: essay -:public: yes -:tags: asciidoc, shitty-ssg -:project: shitty-ssg -:language: EN +:tags: asciidoc, shitty-ssg, public, en As promised in /articles/2020/why-i-built-my-own-shitty-static-site-generator/[my earlier post] on why I decided to build my own Shitty Static Site Generator, I’ll explain the markup format that I use for the posts on this site. The goal was to find a subset of Asciidoc that would be easy to parse myself, but would still result in valid documents, so that they can be processed by all other tools that understand Asciidoc without any problem. For instance, I wanted the syntax coloring in my editor to ‘just work’. diff --git a/doc/code-walkthrough.adoc b/doc/code-walkthrough.adoc index a20f5a4..fc52a29 100644 --- a/doc/code-walkthrough.adoc +++ b/doc/code-walkthrough.adoc @@ -1,11 +1,6 @@ = Shitty SSG: Code Walkthrough -Erik Winter 2021-03-09 -:kind: article -:public: yes -:tags: golang, asciidoc, shitty-ssg -:project: shitty-ssg -:language: en +:tags: go, asciidoc, public, en One would expect a walk through the code of a self proclaimed “shitty” software project not to be a pleasant read. I promise that it is not that bad. Earlier I https://erikwinter.nl/articles/2020/why-i-built-my-own-shitty-static-site-generator/[described] why I built this static site generator and the https://erikwinter.nl/articles/2020/a-tiny-subset-of-asciidoc-for-blogging/[Asciidoc subset] that it uses as a markup language. Here I will describe the code that transforms these documents into a website. Later I will go more into detail on how the flexibility of this generator is used to create and publish to multiple sites from multiple sources in one go. diff --git a/doc/why-i-built-my-own-shitty-static-site-generator.adoc b/doc/why-i-built-my-own-shitty-static-site-generator.adoc index ee0696e..2576b27 100644 --- a/doc/why-i-built-my-own-shitty-static-site-generator.adoc +++ b/doc/why-i-built-my-own-shitty-static-site-generator.adoc @@ -1,11 +1,6 @@ = Why I Built My Own Shitty Static Site Generator -Erik Winter 2020-11-09 -:kind: article -:public: yes -:tags: productivity, asciidoc, hugo, shitty-ssg -:language: EN -:project: shitty-ssg +:tags: productivity, asciidoc, hugo, public, en _NOTE: This post generated some interesting discussions elsewhere. See the comments on https://news.ycombinator.com/item?id=25227181[hackernews] and https://old.reddit.com/r/programming/comments/k05oy9/[reddit] to read more opinions on the subject._