mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
d00ebf445b
* upgrade to most recent bluemonday * make vendor * update tests for bluemonday * update tests for bluemonday * update tests for bluemonday
26 lines
441 B
Go
26 lines
441 B
Go
package css
|
|
|
|
// Stylesheet represents a parsed stylesheet
|
|
type Stylesheet struct {
|
|
Rules []*Rule
|
|
}
|
|
|
|
// NewStylesheet instanciate a new Stylesheet
|
|
func NewStylesheet() *Stylesheet {
|
|
return &Stylesheet{}
|
|
}
|
|
|
|
// Returns string representation of the Stylesheet
|
|
func (sheet *Stylesheet) String() string {
|
|
result := ""
|
|
|
|
for _, rule := range sheet.Rules {
|
|
if result != "" {
|
|
result += "\n"
|
|
}
|
|
result += rule.String()
|
|
}
|
|
|
|
return result
|
|
}
|