- Timestamp:
- Apr 3, 2024, 11:17:16 PM (14 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r80 r87 5 5 GOOS ?= `go env GOOS` 6 6 VERSION ?= `git describe --tags` 7 8 7 build: 9 8 go build ${GOFLAGS} ./cmd/aya -
trunk/README.md
r84 r87 16 16 ## Installation 17 17 18 Build it manually assumingyou have Go (>=1.17) installed:18 Build it manually provided you have Go (>=1.17) installed: 19 19 20 20 $ go install marisa.chaotic.ninja/aya/cmd/aya@latest (1) … … 28 28 but it should not be a problem unless you use it on a page. 29 29 30 You can also disable certain features at build time, with the `-tags` switch. 31 Currently, these tags are available: `noamber`, `nogcss`. 32 See `go help buildconstraint` for more details. 33 30 34 ## Ideology 31 35 … … 36 40 in the `.aya` subdirectory. 37 41 38 Define variables in the header of the content files using [YAML](https:// www.yaml.io) :42 Define variables in the header of the content files using [YAML](https://noyaml.com) : 39 43 40 44 ```markdown -
trunk/cmd/aya/amber.go
r79 r87 1 //go:build !noamber 1 2 // Render .amber files into .html 2 3 package main -
trunk/cmd/aya/gcss.go
r79 r87 1 //go:build !nogcss 1 2 // Render .gcss files into .css 2 3 package main
Note:
See TracChangeset
for help on using the changeset viewer.