Changeset 48 in code
- Timestamp:
- Sep 17, 2021, 11:32:14 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/README.md
r39 r48 1 zs 2 == 3 4 [](https://travis-ci.org/zserge/zs) 1 # zs 5 2 6 3 zs is an extremely minimal static site generator written in Go. … … 23 20 Download the binaries from Github or build it manually: 24 21 25 $ go get git hub.com/zserge/zs22 $ go get git.mills.io/prologic/zs 26 23 27 24 ## Ideology 28 25 29 Keep your texts in markdown, [amber]or HTML format right in the main directory26 Keep your texts in markdown, or HTML format right in the main directory 30 27 of your blog/site. 31 28 … … 93 90 rm -f $ZS_OUTDIR/styles.css 94 91 95 ## Syntax sugar96 97 By default, `zs` converts each `.amber` file into `.html`, so you can use lightweight Jade-like syntax instead of bloated HTML.98 99 Also, `zs` converts `.gcss` into `.css`, so you don't really need LESS or SASS. More about GCSS can be found [here][gcss].100 101 92 ## Command line usage 102 93 … … 114 105 115 106 The software is distributed under the MIT license. 116 117 [amber]: https://github.com/eknkc/amber/118 [YAML]: https://github.com/go-yaml/yaml119 [gcss]: https://github.com/yosssi/gcss -
trunk/go.mod
r47 r48 1 module git hub.com/zserge/zs1 module git.mills.io/prologic/zs 2 2 3 3 go 1.17 4 4 5 5 require ( 6 github.com/eknkc/amber v0.0.0-20171010120322-cdade1c073857 6 github.com/russross/blackfriday/v2 v2.1.0 8 github.com/yosssi/gcss v0.1.09 7 gopkg.in/yaml.v2 v2.4.0 10 8 ) -
trunk/go.sum
r47 r48 1 github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385 h1:clC1lXBpe2kTj2VHdaIu9ajZQe4kcEY9j0NsnDDBZ3o=2 github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385/go.mod h1:0vRUJqYpeSZifjYj7uP3BG/gKcuzL9xWVV/Y+cK33KM=3 1 github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= 4 2 github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= 5 github.com/yosssi/gcss v0.1.0 h1:jRuino7qq7kqntBIhT+0xSUI5/sBgCA/zCQ1Tuzd6Gg=6 github.com/yosssi/gcss v0.1.0/go.mod h1:M3mTPOWZWjVROkXKZ2AiDzOBOXu2MqQeDXF/nKO44sI=7 3 gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= 8 4 gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
Note:
See TracChangeset
for help on using the changeset viewer.