fix: obfuscate regex to prevent css build error (fixes #54)
This commit is contained in:
@@ -186,7 +186,7 @@ class CompetitorAnalyzer:
|
|||||||
|
|
||||||
def _analyze_title(self, title: str) -> Dict[str, Any]:
|
def _analyze_title(self, title: str) -> Dict[str, Any]:
|
||||||
"""Analyze title structure and keyword usage."""
|
"""Analyze title structure and keyword usage."""
|
||||||
parts = re.split(r'[-:|]', title)
|
parts = re.split(r'[-' + r':|]', title)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'title': title,
|
'title': title,
|
||||||
|
|||||||
Reference in New Issue
Block a user