-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
backlogissue has been triaged but has not been earmarked for any upcoming releaseissue has been triaged but has not been earmarked for any upcoming releasetag: docsRelated to the documentationRelated to the documentation
Description
print() doesn't output HTML tags
I was experimenting in Pyscript and I tried to print an HTML table, but it didn't work. It seems to delete the tags and mantain just the plain text.
This is the code that I tried, but it just printed "test" once:
<py-script>
print("<table>")
for i in range (2):
print("<tr>")
for j in range (2):
print("<td>test</td>")
print("</tr>")
print("</table>")
</py-script>Metadata
Metadata
Assignees
Labels
backlogissue has been triaged but has not been earmarked for any upcoming releaseissue has been triaged but has not been earmarked for any upcoming releasetag: docsRelated to the documentationRelated to the documentation
