{ "info": { "author": "Ryan Morshead", "author_email": "ryan.morshead@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "# Hyperscript Markup Language Python Extension\n\nAn extension to the Python language with an\n[f-string](https://www.python.org/dev/peps/pep-0498/)-like\ntemplate syntax for writing HTMl inspired by [pyxl](https://github.com/dropbox/pyxl):\n\n```python\n# coding=html\n\ndef html(tag, props, children):\n return (tag, props, children)\n\nsize = \"30px\"\ntext = \"Hello!\"\n\nmodel = html\"\"\"\n
{text}
\n