Mercurial > yakumo_izuru > aya
view vendor/github.com/yosssi/gcss/context.go @ 71:7819959ac6ca draft
feat: move the blackfriday extension settings out of the render function, improve documentation
Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author | yakumo.izuru |
---|---|
date | Tue, 03 Oct 2023 02:39:08 +0000 |
parents | 787b5ee0289d |
children |
line wrap: on
line source
package gcss // context represents a context of the parsing process. type context struct { vars map[string]*variable mixins map[string]*mixinDeclaration } // newContext creates and returns a context. func newContext() *context { return &context{ vars: make(map[string]*variable), mixins: make(map[string]*mixinDeclaration), } }