From dabea0efa5b58f6da478549d3889a56d5d1b5a09 Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Fri, 20 Dec 2024 00:13:19 +0300 Subject: Auto-commit 2024-12-20 --- .gitignore | 3 ++- hugo.toml | 24 +++++++++++++++++++++--- layouts/_default/list.gmi | 16 ++++++++++++++++ layouts/_default/single.gmi | 11 +++++++++++ 4 files changed, 50 insertions(+), 4 deletions(-) create mode 100644 layouts/_default/list.gmi create mode 100644 layouts/_default/single.gmi diff --git a/.gitignore b/.gitignore index 14119b5..a5878b9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.lock -public/ \ No newline at end of file +public/ +orion \ No newline at end of file diff --git a/hugo.toml b/hugo.toml index de0b253..5e623df 100644 --- a/hugo.toml +++ b/hugo.toml @@ -106,10 +106,28 @@ lineNos = false lineNumbersInTable = true tabWidth = 4 +[mediaTypes] +[mediaTypes."text/gemini"] +suffixes = ["gmi"] +[mediaTypes."text/plain"] +suffixes = ["txt"] + [outputs] -page = ["html"] -home = ["html", "json"] -section = ["html", "rss", "json"] +page = ["html", "gemini"] +home = ["html", "json", "gemini"] +section = ["html", "rss", "json", "gemini"] +taxonomy = ["html", "gemini"] +term = ["html", "gemini"] + +[outputFormats.Gemini] +name = "gemini" +mediaType = "text/gemini" +baseName = "index" +isPlainText = true +permalinkable = true +isHTML = false +protocol = "gemini://" +noUgly = true [pagination] disableAliases = false diff --git a/layouts/_default/list.gmi b/layouts/_default/list.gmi new file mode 100644 index 0000000..8560760 --- /dev/null +++ b/layouts/_default/list.gmi @@ -0,0 +1,16 @@ +# {{ .Title }} + +{{ $content := .Content -}} + +{{ $content := $content | replaceRE `{{<\s*(?:rel)?ref\s+"([^"]+)"\s*>}}` "$1" -}} +{{ $content := $content | replaceRE `{{<\s*figure\s*(?:.*)?src="([^"]+)"(?:.*)?caption="([^"]+)"(?:.*)?>}}` "![$2]($1)" -}} +{{ $content := $content | replaceRE `{{<\s*image\s*.*?src="([^"]+)".*?>}}` "![]($1)" -}} +{{ $content := $content | replaceRE "(?s:< !--more-- >)" "" -}} +{{ $content := $content | replace "" "" -}} +{{ $content := $content | replaceRE `\[(.+?)\]\((.+?)\)` "\n=> $2 $1\n" -}} + +{{ $content }} + +{{ range .Pages.ByPublishDate.Reverse }} +=> {{ .RelPermalink | replaceRE `index.gmi` `` }}{{if .Date }} {{ .Date.Format "2006-01-02" }}{{ end }} {{ .Title }} +{{ end }} \ No newline at end of file diff --git a/layouts/_default/single.gmi b/layouts/_default/single.gmi new file mode 100644 index 0000000..10d9876 --- /dev/null +++ b/layouts/_default/single.gmi @@ -0,0 +1,11 @@ +# {{ .Title }} + +{{ $content := .RawContent -}} + +{{ $content := $content | replaceRE "(?s:< !--more-- >)" "" -}} +{{ $content := $content | replaceRE `\[(.+?)\]\((.+?)\)` "\n=> $2 $1\n" -}} + +{{ $content }} + +--- +NeonXP at {{ .Date.Format "2006-01-02" }} -- cgit v1.2.3