mirror of
https://github.com/facundoolano/jorge.git
synced 2024-11-16 07:47:40 +01:00
e5917dc21e
* extract buildTarget function * first stab at build target rendering refactor * more cleanup * properly separate parse and render stages of liquid templates * move some more rendering from commands to site * move org rendering again, to fix bug * revert more unsatisfactory changes * move build to site * markdown support * remove comments * fix tests * markdown test * cleanup scanner bytes usage * reuse the template engine
18 lines
442 B
Modula-2
18 lines
442 B
Modula-2
module github.com/facundoolano/blorg
|
|
|
|
go 1.22.0
|
|
|
|
require (
|
|
github.com/fsnotify/fsnotify v1.7.0
|
|
github.com/niklasfasching/go-org v1.7.0
|
|
github.com/osteele/liquid v1.3.2
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/osteele/tuesday v1.0.3 // indirect
|
|
github.com/yuin/goldmark v1.7.0 // indirect
|
|
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect
|
|
golang.org/x/sys v0.4.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|