|
@@ -112,7 +112,7 @@ class Element(ABC, Visibility):
|
|
return {}
|
|
return {}
|
|
lexer = shlex.shlex(text, posix=True)
|
|
lexer = shlex.shlex(text, posix=True)
|
|
lexer.whitespace = ' '
|
|
lexer.whitespace = ' '
|
|
- lexer.wordchars += '=-.%'
|
|
|
|
|
|
+ lexer.wordchars += '=-.%:/'
|
|
return dict(word.split('=', 1) if '=' in word else (word, True) for word in lexer)
|
|
return dict(word.split('=', 1) if '=' in word else (word, True) for word in lexer)
|
|
|
|
|
|
def props(self, add: Optional[str] = None, *, remove: Optional[str] = None):
|
|
def props(self, add: Optional[str] = None, *, remove: Optional[str] = None):
|