aboutsummaryrefslogtreecommitdiff
path: root/testdata/goembed
AgeCommit message (Collapse)Author
2026-01-24all: fix test on GoEmbedShulhan
Seems like we use "find ... -delete" for a reason that I forgot. It should not be like that, we will fix it later.
2026-01-24all: embed CSS and index HTML template using memfsShulhan
Previously, with direct embed, every time we change the CSS or index template, we need to restart the "ciigo serve" command. Using memfs make us easy to update and see the changes directly, without restarting the server.
2025-04-18go.mod: update asciidoctor-go module to fix default embedded CSSShulhan
By default, the document contains ":stylesheet:" attribute, which means using the default embedded CSS. To disable it, unset the attribute using ":stylesheet!:". To overwrite it, set the attribute to path of CSS file ":stylesheet: my.css".
2025-04-18testdata: disable generating HTML meta "generator"Shulhan
The "generator" meta will changes when the asciidoctor-go release new version. This causes unnecessary chores on test data that needs to be updated on every new releases.
2025-04-18go.mod: update all dependenciesShulhan
2025-02-01go.mod: update asciidoctor-goShulhan
The latest release fix parsing section that is not detected after list items.
2024-12-08go.mod: update all dependenciesShulhan
2024-09-07go.mod: update all dependenciesShulhan
2024-07-26all: update dependenciesShulhan
Update on git.sr.ht/~shulhan/pakakeh.go fixes the "serve" command where new files on the root of served directory not detected automatically.
2024-05-12all: set the test output for GoEmbed without modification timeShulhan
This is to make the go embed output consistent when this repository cloned for the first time, due the file modtime is newer on each "git clone".
2024-05-10all: update module pakakeh.go to latest releaseShulhan
2024-04-11cmd/ciigo: add flag to set package and variable name for "embed"Shulhan
The flag "-package-name" can be used to changes the default package name inside the Go embed file. The flag "-var-name" can be used to changes the default memfs variable name inside the Go embed file.