package postcss

import "github.com/gohugoio/hugo/resources/resource_transformers/postcss"

Index

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client is the client used to do PostCSS transformations.

func New

func New(rs *resources.Spec) *Client

New creates a new Client with the given specification.

func (*Client) Process

func (c *Client) Process(res resource.Resource, options Options) (resource.Resource, error)

Process transforms the given Resource with the PostCSS processor.

type Options

type Options struct {

	// Set a custom path to look for a config file.
	Config string

	NoMap bool `mapstructure:"no-map"` // Disable the default inline sourcemaps

	// Options for when not using a config file
	Use         string // List of postcss plugins to use
	Parser      string //  Custom postcss parser
	Stringifier string // Custom postcss stringifier
	Syntax      string // Custom postcss syntax
}

Some of the options from https://github.com/postcss/postcss-cli

func DecodeOptions

func DecodeOptions(m map[string]interface{}) (opts Options, err error)

Source Files

postcss.go

Version
v0.55.3
Published
Apr 20, 2019
Platform
linux/amd64
Imports
10 packages
Last checked
4 hours ago

Tools for package owners.