Changeset 48 in code


Ignore:
Timestamp:
Sep 17, 2021, 11:32:14 PM (4 years ago)
Author:
prologic
Message:

Forked project

Location:
trunk
Files:
3 added
3 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/README.md

    r39 r48  
    1 zs
    2 ==
    3 
    4 [![Build Status](https://travis-ci.org/zserge/zs.svg?branch=master)](https://travis-ci.org/zserge/zs)
     1# zs
    52
    63zs is an extremely minimal static site generator written in Go.
     
    2320Download the binaries from Github or build it manually:
    2421
    25         $ go get github.com/zserge/zs
     22        $ go get git.mills.io/prologic/zs
    2623
    2724## Ideology
    2825
    29 Keep your texts in markdown, [amber] or HTML format right in the main directory
     26Keep your texts in markdown, or HTML format right in the main directory
    3027of your blog/site.
    3128
     
    9390        rm -f $ZS_OUTDIR/styles.css
    9491
    95 ## Syntax sugar
    96 
    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 
    10192## Command line usage
    10293
     
    114105
    115106The software is distributed under the MIT license.
    116 
    117 [amber]: https://github.com/eknkc/amber/
    118 [YAML]: https://github.com/go-yaml/yaml
    119 [gcss]: https://github.com/yosssi/gcss
  • trunk/go.mod

    r47 r48  
    1 module github.com/zserge/zs
     1module git.mills.io/prologic/zs
    22
    33go 1.17
    44
    55require (
    6         github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385
    76        github.com/russross/blackfriday/v2 v2.1.0
    8         github.com/yosssi/gcss v0.1.0
    97        gopkg.in/yaml.v2 v2.4.0
    108)
  • 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=
    31github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
    42github.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=
    73gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
    84gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
Note: See TracChangeset for help on using the changeset viewer.