diff options
author | Simon Hartley <170740+scrhartley@users.noreply.github.com> | 2025-03-25 07:38:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-25 08:38:19 +0100 |
commit | abaf3de23724269510a16753e036d442394ff0c8 (patch) | |
tree | 2c181886fa67e765dfd5012c8e9423ee1ad32463 | |
parent | 1b4e778ba6bd3bf6daab2e181ffe892eeaf40792 (diff) | |
download | htmx-abaf3de23724269510a16753e036d442394ff0c8.tar.gz htmx-abaf3de23724269510a16753e036d442394ff0c8.zip |
Documentation update for include-vals extension (#3247)
Documentation update for outdated extension
-rw-r--r-- | www/content/extensions/_index.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/content/extensions/_index.md b/www/content/extensions/_index.md index 4a6b45a2..790842a3 100644 --- a/www/content/extensions/_index.md +++ b/www/content/extensions/_index.md @@ -35,9 +35,9 @@ htmx extensions are split into two categories: | [class-tools](https://github.com/bigskysoftware/htmx-extensions/blob/main/src/class-tools/README.md) | The `class-tools` extension allows you to specify CSS classes that will be swapped onto or off of the elements by using a `classes` or `data-classes` attribute. | | [client-side-templates](https://github.com/bigskysoftware/htmx-extensions/blob/main/src/client-side-templates/README.md) | This extension supports transforming a JSON/XML request response into HTML via a client-side template before it is swapped into the DOM. | | [debug](https://github.com/bigskysoftware/htmx-extensions/blob/main/src/debug/README.md) | This extension includes log all htmx events for the element it is on, either through the `console.debug` function or through the `console.log` function with a `DEBUG:` prefix. | -| [disable-element](https://github.com/bigskysoftware/htmx-extensions/blob/main/src/disable-element/README.md) | This extension disables an element during an htmx request, when configured on the element triggering the request. Note that this functionality is now part of the core of htmx via the `hx-disabled-elt` attribute | +| [disable-element](https://github.com/bigskysoftware/htmx-extensions/blob/main/src/disable-element/README.md) | This extension disables an element during an htmx request, when configured on the element triggering the request. Note that this functionality is now part of the core of htmx via the `hx-disabled-elt` attribute. | | [event-header](https://github.com/bigskysoftware/htmx-extensions/blob/main/src/event-header/README.md) | This extension adds the `Triggering-Event` header to requests. The value of the header is a JSON serialized version of the event that triggered the request. | -| [include-vals](https://github.com/bigskysoftware/htmx-extensions/blob/main/src/include-vals/README.md) | The `include-vals` extension allows you to programmatically include values in a request with a `include-vals` attribute. The value of this attribute is one or more name/value pairs, which will be evaluated as the fields in a javascript object literal. | +| [include-vals](https://github.com/bigskysoftware/htmx-extensions/blob/main/src/include-vals/README.md) | The `include-vals` extension allows you to programmatically include values in a request with a `include-vals` attribute. Note that this functionality is now part of the core of htmx via the `hx-vals` attribute. | | [json-enc](https://github.com/bigskysoftware/htmx-extensions/blob/main/src/json-enc/README.md) | This extension encodes parameters in JSON format instead of url format. | | [form-json](https://github.com/xehrad/form-json/blob/main/README.md) | Similar to `json-enc`, but with **type preservation**. Converts form data into structured JSON while maintaining correct types for numbers, booleans, and files (Base64-encoded). Supports nested structures using dot (`.`) or bracket (`[]`) notation. | | [json-enc-custom](https://github.com/Emtyloc/json-enc-custom/blob/main/README.md) | This extension works similarly to json-enc but allows for very complex structures, such as embedding JSON objects, lists, or handling indexes, just by using the name attribute. | |