diff options
author | Carson Gross <carson@bigsky.software> | 2023-07-17 05:17:34 -0600 |
---|---|---|
committer | Carson Gross <carson@bigsky.software> | 2023-07-17 05:17:34 -0600 |
commit | e33b0be9090000661e47574b2663c54ad9e94d7c (patch) | |
tree | ea441e21077e4d4a3c90dd1ef9d95e233fc05d3a | |
parent | 3773828d33ae23ebb2c56ccc1da4ead8ee1d5dee (diff) | |
parent | 8766ad7db4d7578ac2178daf5e95a2ba90a4b03c (diff) | |
download | htmx-e33b0be9090000661e47574b2663c54ad9e94d7c.tar.gz htmx-e33b0be9090000661e47574b2663c54ad9e94d7c.zip |
Merge remote-tracking branch 'origin/master'
-rw-r--r-- | www/content/essays/rest-explained.md | 2 | ||||
-rw-r--r-- | www/content/essays/template-fragments.md | 2 | ||||
-rw-r--r-- | www/content/extensions/server-sent-events.md | 6 | ||||
-rw-r--r-- | www/content/posts/2023-07-14-htmx-1.9.3-is-released.md | 2 |
4 files changed, 7 insertions, 5 deletions
diff --git a/www/content/essays/rest-explained.md b/www/content/essays/rest-explained.md index 8e1faea1..e7f38735 100644 --- a/www/content/essays/rest-explained.md +++ b/www/content/essays/rest-explained.md @@ -233,7 +233,7 @@ From the paper: This is all very true, and is why the web has been so successful and will continue to be successful. -## [Sections 5.4](https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm#sec_5_4) & [5.5]((https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm#sec_5_5)) - Related Work & Summary +## [Sections 5.4](https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm#sec_5_4) & [5.5](https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm#sec_5_5) - Related Work & Summary These brief sections are not relevant to non-academics interested in REST. diff --git a/www/content/essays/template-fragments.md b/www/content/essays/template-fragments.md index c0fbdfbf..ffb19ce4 100644 --- a/www/content/essays/template-fragments.md +++ b/www/content/essays/template-fragments.md @@ -149,5 +149,7 @@ Here are some known implementations of the fragment concept: * [django-template-partials](https://pypi.org/project/django-template-partials/) ([repository](https://github.com/carltongibson/django-template-partials)) * .NET * [Giraffe.ViewEngine.Htmx](https://github.com/bit-badger/Giraffe.Htmx/tree/main/src/ViewEngine.Htmx) +* Rust + * [MiniJinja](https://docs.rs/minijinja/latest/minijinja/struct.State.html#method.render_block) Please [let me know](/discord) if you know of others, so I can add them to this list. diff --git a/www/content/extensions/server-sent-events.md b/www/content/extensions/server-sent-events.md index c6268695..8192c3be 100644 --- a/www/content/extensions/server-sent-events.md +++ b/www/content/extensions/server-sent-events.md @@ -118,6 +118,6 @@ Previous versions of htmx used a built-in tag `hx-sse` to implement Server Sent ### Additional SSE Resources -*[Wikipedia](https://en.wikipedia.org/wiki/Server-sent_events) -*[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events) -*[Can I Use?](https://caniuse.com/eventsource) +* [Wikipedia](https://en.wikipedia.org/wiki/Server-sent_events) +* [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events) +* [Can I Use?](https://caniuse.com/eventsource) diff --git a/www/content/posts/2023-07-14-htmx-1.9.3-is-released.md b/www/content/posts/2023-07-14-htmx-1.9.3-is-released.md index 0f44c00e..95f34d30 100644 --- a/www/content/posts/2023-07-14-htmx-1.9.3-is-released.md +++ b/www/content/posts/2023-07-14-htmx-1.9.3-is-released.md @@ -11,7 +11,7 @@ I'm happy to announce the [1.9.3 release](https://unpkg.com/browse/htmx.org@1.9. ### New Features -* The `hx-on` attribute has been deprecated (sorry) in favor of `hx-on-<event name>` attributes. See [`hx-on`](/attributes/hx-on) for more information. +* The `hx-on` attribute has been deprecated (sorry) in favor of `hx-on:<event name>` attributes. See [`hx-on`](/attributes/hx-on) for more information. * You can now configure if a type of HTTP request uses the body for parameters or not. In particular, the `DELETE` _should_ use query parameters, according to the spec. htmx has used the body, instead. To avoid breaking code we are keeping this undefined behavior for now, but allowing people to fix it for their use cases by updating the `htmx.config.methodsThatUseUrlParams` config |