diff --git a/parser/main.go b/parser/main.go
index 7c81c2c..0fa3ee0 100644
--- a/parser/main.go
+++ b/parser/main.go
@@ -57,9 +57,11 @@ func ParseStyleAttribute(styleValue string) map[string]string {
- start := 0
- for i := 0; i < len(styleValue); i++ {
- if styleValue[i] == ';' {
- part := styleValue[start:i]
- if len(part) > 0 {
- key, value := parseKeyValue(part)
- if key != "" && value != "" {
- styleMap[key] = value
- }
+ // Split the style attribute by ';'
+ styles := strings.Split(styleValue, ";")
+
+ for _, style := range styles {
+ // Split each key-value pair by ':'
+ parts := strings.SplitN(style, ":", 2)
+ if len(parts) == 2 {
+ key := strings.TrimSpace(parts[0])
+ value := strings.TrimSpace(parts[1])
+ if key != "" && value != "" {
+ styleMap[key] = value
@@ -67,10 +68,0 @@ func ParseStyleAttribute(styleValue string) map[string]string {
- start = i + 1
- }
- }
-
- // Handle the last part if there's no trailing semicolon
- if start < len(styleValue) {
- part := styleValue[start:]
- key, value := parseKeyValue(part)
- if key != "" && value != "" {
- styleMap[key] = value
@@ -83,11 +74,0 @@ func ParseStyleAttribute(styleValue string) map[string]string {
-func parseKeyValue(style string) (string, string) {
- for i := 0; i < len(style); i++ {
- if style[i] == ':' {
- key := strings.TrimSpace(style[:i])
- value := strings.TrimSpace(style[i+1:])
- return key, value
- }
- }
- return "", ""
-}
-
package parser
import (
"regexp"
"strings"
)
func ParseCSS(css string) map[string]map[string]string {
selectorMap := make(map[string]map[string]string)
// Remove comments
css = removeComments(css)
// Parse regular selectors and styles
selectorRegex := regexp.MustCompile(`([^{]+){([^}]+)}`)
matches := selectorRegex.FindAllStringSubmatch(css, -1)
for _, match := range matches {
selectorBlock := strings.TrimSpace(match[1])
styleBlock := match[2]
selectors := parseSelectors(selectorBlock)
for _, selector := range selectors {
selectorMap[selector] = parseStyles(styleBlock)
}
}
return selectorMap
}
func parseSelectors(selectorBlock string) []string {
// Split by comma and trim each selector
selectors := strings.Split(selectorBlock, ",")
for i, selector := range selectors {
selectors[i] = strings.TrimSpace(selector)
}
return selectors
}
func parseStyles(styleBlock string) map[string]string {
styleRegex := regexp.MustCompile(`([a-zA-Z-]+)\s*:\s*([^;]+);`)
matches := styleRegex.FindAllStringSubmatch(styleBlock, -1)
styleMap := make(map[string]string)
for _, match := range matches {
propName := strings.TrimSpace(match[1])
propValue := strings.TrimSpace(match[2])
styleMap[propName] = propValue
}
return styleMap
}
func ParseStyleAttribute(styleValue string) map[string]string {
styleMap := make(map[string]string)
start := 0
for i := 0; i < len(styleValue); i++ {
if styleValue[i] == ';' {
part := styleValue[start:i]
if len(part) > 0 {
key, value := parseKeyValue(part)
if key != "" && value != "" {
styleMap[key] = value
}
}
start = i + 1
}
}
// Handle the last part if there's no trailing semicolon
if start < len(styleValue) {
part := styleValue[start:]
key, value := parseKeyValue(part)
if key != "" && value != "" {
styleMap[key] = value
}
}
return styleMap
}
func parseKeyValue(style string) (string, string) {
for i := 0; i < len(style); i++ {
if style[i] == ':' {
key := strings.TrimSpace(style[:i])
value := strings.TrimSpace(style[i+1:])
return key, value
}
}
return "", ""
}
func removeComments(css string) string {
commentRegex := regexp.MustCompile(`(?s)/\*.*?\*/`)
return commentRegex.ReplaceAllString(css, "")
}