summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-04-09 15:31:28 -0300
committerEuAndreh <eu@euandre.org>2025-04-09 15:31:28 -0300
commit8666f2be2fd8fb3dfeadd1226b60a31fde8cfb6d (patch)
treeed98eb97c25a459950252662422e0e1168b1a1e5 /src
parentsrc/content/: Recover article categories metadata, not its usage or metadata (diff)
downloadeuandre.org-8666f2be2fd8fb3dfeadd1226b60a31fde8cfb6d.tar.gz
euandre.org-8666f2be2fd8fb3dfeadd1226b60a31fde8cfb6d.tar.xz
src/content/: Integrate sorting metadata into asciidoc document header
Diffstat (limited to 'src')
-rw-r--r--src/content/blog/2020/10/05/cargo2nix.adoc5
-rw-r--r--src/content/pastebins/2018/07/13/guix-nixos-systemd.adoc5
-rw-r--r--src/content/pastebins/2018/07/13/guixbuilder-nixos.adoc5
-rw-r--r--src/content/pastebins/2018/07/13/nix-strpad.adoc5
-rw-r--r--src/content/pastebins/2018/07/25/nix-showdrv.adoc5
-rw-r--r--src/content/tils/2020/11/12/diy-nix-bash-ci.adoc5
-rw-r--r--src/content/tils/2020/11/12/git-bisect-automation.adoc5
-rw-r--r--src/content/tils/2021/04/24/clojure-autocurry.adoc5
-rw-r--r--src/content/tils/2021/04/24/scm-nif.adoc5
9 files changed, 9 insertions, 36 deletions
diff --git a/src/content/blog/2020/10/05/cargo2nix.adoc b/src/content/blog/2020/10/05/cargo2nix.adoc
index 657375d..5941b3c 100644
--- a/src/content/blog/2020/10/05/cargo2nix.adoc
+++ b/src/content/blog/2020/10/05/cargo2nix.adoc
@@ -1,8 +1,5 @@
-////
-export sort=1
-////
-
= cargo2nix: Dramatically simpler Rust in Nix
+:sort: 1
:empty:
:swift2nix: link:./swift2nix.html
diff --git a/src/content/pastebins/2018/07/13/guix-nixos-systemd.adoc b/src/content/pastebins/2018/07/13/guix-nixos-systemd.adoc
index df92548..fa4226a 100644
--- a/src/content/pastebins/2018/07/13/guix-nixos-systemd.adoc
+++ b/src/content/pastebins/2018/07/13/guix-nixos-systemd.adoc
@@ -1,9 +1,6 @@
-////
-export sort=3
-////
-
= GNU Guix systemd daemon for NixOS
:catgories: nix, guix
+:sort: 3
[source,nix]
----
diff --git a/src/content/pastebins/2018/07/13/guixbuilder-nixos.adoc b/src/content/pastebins/2018/07/13/guixbuilder-nixos.adoc
index 38c1fe2..331bff7 100644
--- a/src/content/pastebins/2018/07/13/guixbuilder-nixos.adoc
+++ b/src/content/pastebins/2018/07/13/guixbuilder-nixos.adoc
@@ -1,9 +1,6 @@
-////
-export sort=2
-////
-
= Guix users in NixOS system configuration
:categories: nix, guix
+:sort: 2
[source,nix]
----
diff --git a/src/content/pastebins/2018/07/13/nix-strpad.adoc b/src/content/pastebins/2018/07/13/nix-strpad.adoc
index e6d9d64..71e8168 100644
--- a/src/content/pastebins/2018/07/13/nix-strpad.adoc
+++ b/src/content/pastebins/2018/07/13/nix-strpad.adoc
@@ -1,9 +1,6 @@
-////
-export sort=1
-////
-
= Nix string padding
:categories: nix
+:sort: 1
[source,nix]
----
diff --git a/src/content/pastebins/2018/07/25/nix-showdrv.adoc b/src/content/pastebins/2018/07/25/nix-showdrv.adoc
index 700d430..b62e526 100644
--- a/src/content/pastebins/2018/07/25/nix-showdrv.adoc
+++ b/src/content/pastebins/2018/07/25/nix-showdrv.adoc
@@ -1,9 +1,6 @@
-////
-export sort=1
-////
-
= nix show-derivation sample output
:categories: nix
+:sort: 1
[source,nix]
----
diff --git a/src/content/tils/2020/11/12/diy-nix-bash-ci.adoc b/src/content/tils/2020/11/12/diy-nix-bash-ci.adoc
index aa96466..219b694 100644
--- a/src/content/tils/2020/11/12/diy-nix-bash-ci.adoc
+++ b/src/content/tils/2020/11/12/diy-nix-bash-ci.adoc
@@ -1,9 +1,6 @@
-////
-export sort=2
-////
-
= DIY bare bones CI server with Bash and Nix
:categories: ci
+:sort: 2
:post-receive: https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks
:example-project: https://euandreh.xyz/remembering/ci.html
diff --git a/src/content/tils/2020/11/12/git-bisect-automation.adoc b/src/content/tils/2020/11/12/git-bisect-automation.adoc
index 936d042..d7ea2ca 100644
--- a/src/content/tils/2020/11/12/git-bisect-automation.adoc
+++ b/src/content/tils/2020/11/12/git-bisect-automation.adoc
@@ -1,9 +1,6 @@
-////
-export sort=1
-////
-
= Git bisect automation
:categories: git
+:sort: 1
It is good to have an standardized way to run builds and tests on the repository
of a project, so that you can find when a bug was introduced by using
diff --git a/src/content/tils/2021/04/24/clojure-autocurry.adoc b/src/content/tils/2021/04/24/clojure-autocurry.adoc
index 8eae061..fdc71f2 100644
--- a/src/content/tils/2021/04/24/clojure-autocurry.adoc
+++ b/src/content/tils/2021/04/24/clojure-autocurry.adoc
@@ -1,8 +1,5 @@
-////
-export sort=1
-////
-
= Clojure auto curry
+:sort: 1
:defcurry-orig: https://lorettahe.github.io/clojure/2016/09/22/clojure-auto-curry
diff --git a/src/content/tils/2021/04/24/scm-nif.adoc b/src/content/tils/2021/04/24/scm-nif.adoc
index 32604d5..7177355 100644
--- a/src/content/tils/2021/04/24/scm-nif.adoc
+++ b/src/content/tils/2021/04/24/scm-nif.adoc
@@ -1,9 +1,6 @@
-////
-export sort=2
-////
-
= Three-way conditional for number signs on Lisp
:categories: lisp, scheme, common lisp
+:sort: 2
:on-lisp: https://www.paulgraham.com/onlisptext.html
:sicp: https://mitpress.mit.edu/sites/default/files/sicp/index.html