Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Empty file added fastcore/__init__.py
Empty file.
Empty file added fastcore/xml.py
Empty file.
2 changes: 2 additions & 0 deletions nbs/index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions settings.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[DEFAULT]
lib_name = fasthtml
user = answerdotai
repo = fasthtml
branch = main
version = 0.0.1
keywords = fasthtml
custom_sidebar = False
4 changes: 4 additions & 0 deletions sitecustomize.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import typing

if not hasattr(typing, '_allowed_types'):
typing._allowed_types = (type,)