GCSS - CSS 预处理器


MIT
跨平台
Google Go

软件简介

GCSS 是纯 Go 语言实现的 CSS 预处理器,灵感来自于 Sass
Stylus.

示例:

$border-radius($radius)
  -webkit-border-radius: $radius
  -moz-border-radius: $radius
  -ms-border-radius: $radius
  border-radius: $radius

.box
  $border-radius(10px)

编译:

cssPath, err := gcss.CompileFile("path_to_gcss_file")

if err != nil {
    http.Error(w, err.Error(), http.StatusInternalServerError)
    return
}

http.ServeFile(w, r, cssPath)