diff options
author | Simon Hartley <170740+scrhartley@users.noreply.github.com> | 2025-03-28 07:03:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-28 08:03:47 +0100 |
commit | aa3dbf0c50339216c11f1c4a0e70569fb862922b (patch) | |
tree | 6def582d0862f92177c1d31146145bc27f117053 | |
parent | 838f49d9773d4eb876275c3352cf542f0b0f8eed (diff) | |
download | htmx-aa3dbf0c50339216c11f1c4a0e70569fb862922b.tar.gz htmx-aa3dbf0c50339216c11f1c4a0e70569fb862922b.zip |
Documentation update for debug extension (#3255)
-rw-r--r-- | www/content/extensions/_index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/content/extensions/_index.md b/www/content/extensions/_index.md index 790842a3..28ad83e5 100644 --- a/www/content/extensions/_index.md +++ b/www/content/extensions/_index.md @@ -34,7 +34,7 @@ htmx extensions are split into two categories: | [attribute-tools](https://github.com/jamcole/htmx-ext-attribute-tools/blob/main/README.md) | The `attribute-tools` extension allows you to specify attributes that will be swapped onto or off of the elements by using an `attributes` or `data-attributes` attribute. (similar to class-tools) | | [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. | +| [debug](https://github.com/bigskysoftware/htmx-extensions/blob/main/src/debug/README.md) | This extension will log all htmx events for the element it is on through the `console.debug` function. Note that during dev, using `htmx.logAll()` instead can often be sufficient. | | [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. Note that this functionality is now part of the core of htmx via the `hx-vals` attribute. | |