diff --git a/README.md b/README.md index 4649a040..ebf1cc1b 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,17 @@ The capabilities of FastHTML are vast and growing, and not all the features and Then explore the small but growing third-party ecosystem of FastHTML tutorials, notebooks, libraries, and components: +- [FastHTML Gallery](https://gallery.fastht.ml): Learn from minimal + examples of components (ie chat bubbles, click-to-edit, infinite + scroll, etc) +- [Creating Custom FastHTML Tags for Markdown + Rendering](https://isaac-flath.github.io/website/posts/boots/FasthtmlTutorial.html) + by Isaac Flath +- [How to Build a Simple Login System in + FastHTML](https://blog.mariusvach.com/posts/login-fasthtml) by Marius + Vach +- [Building My First FastHTML App and What I Learned](https://fast-html.blogspot.com/2026/07/building-my-first-fasthtml-app-and-what.html) +- [My First FastHTML App](https://your-link-here.com) by Adish Meetei - [FastHTML Gallery](https://gallery.fastht.ml): Learn from minimal examples of components (ie chat bubbles, click-to-edit, infinite scroll, etc) - [Creating Custom FastHTML Tags for Markdown Rendering](https://isaac-flath.github.io/website/posts/boots/FasthtmlTutorial.html) by Isaac Flath - [How to Build a Simple Login System in FastHTML](https://blog.mariusvach.com/posts/login-fasthtml) by Marius Vach diff --git a/fastcore/__init__.py b/fastcore/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/fastcore/xml.py b/fastcore/xml.py new file mode 100644 index 00000000..e69de29b diff --git a/nbs/index.ipynb b/nbs/index.ipynb index fda92fae..1a0b7510 100644 --- a/nbs/index.ipynb +++ b/nbs/index.ipynb @@ -161,6 +161,8 @@ "- [FastHTML Gallery](https://gallery.fastht.ml): Learn from minimal examples of components (ie chat bubbles, click-to-edit, infinite scroll, etc)\n", "- [Creating Custom FastHTML Tags for Markdown Rendering](https://isaac-flath.github.io/website/posts/boots/FasthtmlTutorial.html) by Isaac Flath\n", "- [How to Build a Simple Login System in FastHTML](https://blog.mariusvach.com/posts/login-fasthtml) by Marius Vach\n", + "- [Building My First FastHTML App and What I Learned](https://fast-html.blogspot.com/2026/07/building-my-first-fasthtml-app-and-what.html)\n", + "- [My First FastHTML App](https://your-link-here.com) by Adish Meetei\n", "- Your tutorial here!\n", "\n", "Finally, join the FastHTML community to ask questions, share your work, and learn from others:\n", diff --git a/settings.ini b/settings.ini new file mode 100644 index 00000000..c35b237f --- /dev/null +++ b/settings.ini @@ -0,0 +1,8 @@ +[DEFAULT] +lib_name = fasthtml +user = answerdotai +repo = fasthtml +branch = main +version = 0.0.1 +keywords = fasthtml +custom_sidebar = False diff --git a/sitecustomize.py b/sitecustomize.py new file mode 100644 index 00000000..b2d5aef7 --- /dev/null +++ b/sitecustomize.py @@ -0,0 +1,4 @@ +import typing + +if not hasattr(typing, '_allowed_types'): + typing._allowed_types = (type,)