Pokus o opravu #34, @jirikalvoda prosím vyzkoušej, nemám teď k dispozici plné prostředí.
This commit is contained in:
parent
c1430069ab
commit
8ad8f73fea
1 changed files with 2 additions and 1 deletions
|
@ -46,7 +46,8 @@ class HTMLGenerator(OutputGenerator):
|
|||
def start_tag(self, tag: str, attributes: dict[str,str]={}) -> str:
|
||||
words = [tag]
|
||||
for key, value in attributes.items():
|
||||
words.append(f"{key}=\"{self.escape_special_chars(value)}\"")
|
||||
if value is not None:
|
||||
words.append(f"{key}=\"{self.escape_special_chars(value)}\"")
|
||||
return "<" + " ".join(words) + ">"
|
||||
|
||||
def end_tag(self, tag: str, attributes: dict[str,str]={}) -> str:
|
||||
|
|
Loading…
Reference in a new issue