Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vanng822/css
Basic css parser in golang
https://github.com/vanng822/css
css go parser
Last synced: about 16 hours ago
JSON representation
Basic css parser in golang
- Host: GitHub
- URL: https://github.com/vanng822/css
- Owner: vanng822
- License: mit
- Created: 2015-02-22T12:20:27.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-11-26T11:05:03.000Z (3 months ago)
- Last Synced: 2025-02-07T12:09:35.183Z (8 days ago)
- Topics: css, go, parser
- Language: Go
- Homepage:
- Size: 58.6 KB
- Stars: 33
- Watchers: 6
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# css
Package css is for parsing css stylesheet.
# Document
[![GoDoc](https://godoc.org/github.com/vanng822/css?status.svg)](https://godoc.org/github.com/vanng822/css)
# example
import (
"github.com/vanng822/css"
"fmt"
)
func main() {
csstext := "td {width: 100px; height: 100px;}"
ss := css.Parse(csstext)
rules := ss.GetCSSRuleList()
for _, rule := range rules {
fmt.Println(rule.Style.Selector.Text())
fmt.Println(rule.Style.Styles)
}
}