mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-15 08:41:16 -05:00
* sanitize email text/html body parts using bluemonday
* deps(groupware):
- new dependency: github.com/microcosm-cc/bluemonday
- transitive dependencies:
- github.com/aymerick/douceur
- github.com/gorilla/css
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
|
|
}
|