diff options
author | Alexander Petros <apetros15@gmail.com> | 2024-01-10 19:28:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 17:28:48 -0700 |
commit | 7006830109213203da872666ee2fefbda65ccd1c (patch) | |
tree | 8675393d95fb6d85c149878a1c1fc507cbc6c58e | |
parent | 509feb5d4f720c5fd4957c10b1993ee9daca9e44 (diff) | |
download | htmx-7006830109213203da872666ee2fefbda65ccd1c.tar.gz htmx-7006830109213203da872666ee2fefbda65ccd1c.zip |
Fix typo in framework essay (#2174)
-rw-r--r-- | www/content/essays/is-htmx-another-javascript-framework.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/content/essays/is-htmx-another-javascript-framework.md b/www/content/essays/is-htmx-another-javascript-framework.md index ed1923c6..884fcce2 100644 --- a/www/content/essays/is-htmx-another-javascript-framework.md +++ b/www/content/essays/is-htmx-another-javascript-framework.md @@ -35,7 +35,7 @@ So: is htmx a framework? And is it going to be fast made obsolete, leaving a tra ## htmx is (usually) a framework -With apologies to our community's ongoing debate about this question—I think htmx is pretty clearly a framework, at least in the majority use-case. But it does depend on how you use itcommunity's ongoing debate about . +With apologies to our community's ongoing debate about this question—I think htmx is pretty clearly a framework, at least in the majority use-case. But it does depend on how you use it. Wherever you make use of htmx in your project, you're including htmx attributes in your HTML (i.e. `hx-post`, `hx-target`), writing endpoints that are called with htmx-formatted data (with certain request headers), and returning data from those endpoints that is formatted in ways that htmx expects (HTML with `hx-*` controls). All of these attributes and headers and endpoints interact with each other to create a system by which elements enter and exit the DOM via network request. |