URI: 
       commands: Modify gen chromastyles to output all CSS classes - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 102ec2da7adcc4afb7050b17989f0486f8379679
   DIR parent feaa582cbe950e82969da5e99e3fb9a3947025df
  HTML Author: Steve <acahir@users.noreply.github.com>
       Date:   Mon, 13 Apr 2020 12:31:33 -0400
       
       commands: Modify gen chromastyles to output all CSS classes
       
       Chroma was updated to include a new function to output all CSS
       classes without skipping any considered redundant with the current
       style.
       
       This will modify the `hugo gen chromastyles` command to use this new
       function by default, which avoids potential problems if the style is
       later modified.
       
       Also includes requires the updated Chroma (v0.7.2).
       
       Resolves #7167
       Diffstat:
         M commands/genchromastyles.go         |       2 +-
         M go.mod                              |       2 +-
         M go.sum                              |       2 ++
       
       3 files changed, 4 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/commands/genchromastyles.go b/commands/genchromastyles.go
       @@ -68,7 +68,7 @@ func (g *genChromaStyles) generate() error {
                if err != nil {
                        return err
                }
       -        formatter := html.New(html.WithClasses(true))
       +        formatter := html.New(html.WithAllClasses(true))
                formatter.WriteCSS(os.Stdout, style)
                return nil
        }
   DIR diff --git a/go.mod b/go.mod
       @@ -5,7 +5,7 @@ require (
                github.com/BurntSushi/toml v0.3.1
                github.com/PuerkitoBio/purell v1.1.1
                github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
       -        github.com/alecthomas/chroma v0.7.1
       +        github.com/alecthomas/chroma v0.7.2
                github.com/alecthomas/repr v0.0.0-20181024024818-d37bc2a10ba1 // indirect
                github.com/armon/go-radix v1.0.0
                github.com/aws/aws-sdk-go v1.27.1
   DIR diff --git a/go.sum b/go.sum
       @@ -42,6 +42,8 @@ github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38 h1:smF2tmSOzy2Mm
        github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38/go.mod h1:r7bzyVFMNntcxPZXK3/+KdruV1H5KSlyVY0gc+NgInI=
        github.com/alecthomas/chroma v0.7.1 h1:G1i02OhUbRi2nJxcNkwJaY/J1gHXj9tt72qN6ZouLFQ=
        github.com/alecthomas/chroma v0.7.1/go.mod h1:gHw09mkX1Qp80JlYbmN9L3+4R5o6DJJ3GRShh+AICNc=
       +github.com/alecthomas/chroma v0.7.2 h1:B76NU/zbQYIUhUowbi4fmvREmDUJLsUzKWTZmQd3ABY=
       +github.com/alecthomas/chroma v0.7.2/go.mod h1:fv5SzZPFJbwp2NXJWpFIX7DZS4HgV1K4ew4Pc2OZD9s=
        github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721 h1:JHZL0hZKJ1VENNfmXvHbgYlbUOvpzYzvy2aZU5gXVeo=
        github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721/go.mod h1:QO9JBoKquHd+jz9nshCh40fOfO+JzsoXy8qTHF68zU0=
        github.com/alecthomas/kong v0.1.17-0.20190424132513-439c674f7ae0/go.mod h1:+inYUSluD+p4L8KdviBSgzcqEjUQOfC5fQDRFuc36lI=