implement platform icons #78
|
@ -21,11 +21,16 @@ def Component(
|
||||||
if isinstance(children, str):
|
if isinstance(children, str):
|
||||||
children = [children]
|
children = [children]
|
||||||
childrenBlob = "\n".join(children)
|
childrenBlob = "\n".join(children)
|
||||||
attributesList = [f'{name} = "{value}"' for name, value in attributes]
|
if len(attributes) == 0:
|
||||||
attributesBlob = " ".join(attributesList)
|
attributesBlob = ""
|
||||||
|
else:
|
||||||
|
attributesList = [f'{name}="{value}"' for name, value in attributes]
|
||||||
|
# make attribute list into a string
|
||||||
|
# and insert space between tag and attribute list
|
||||||
|
attributesBlob = f" {" ".join(attributesList)}"
|
||||||
tag: str = ""
|
tag: str = ""
|
||||||
if tag_name != "":
|
if tag_name != "":
|
||||||
tag = f"<a {attributesBlob}>{childrenBlob}</a>"
|
tag = f"<{tag_name}{attributesBlob}>{childrenBlob}</{tag_name}>"
|
||||||
elif template != "":
|
elif template != "":
|
||||||
tag = render_to_string(
|
tag = render_to_string(
|
||||||
template,
|
template,
|
||||||
|
|
Loading…
Reference in New Issue