Skip to content

Commit

Permalink
Minor consistency edits
Browse files Browse the repository at this point in the history
  • Loading branch information
marisst committed Dec 19, 2024
1 parent a4abca4 commit 4f9bd42
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion www/content/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,7 @@ import `htmx.org`;
import `htmx-ext-extension-name`; // replace `extension-name` with the name of the extension
```

Note: [Idiomorph](/extensions/idiomorph) does not follow the naming convention of htmx extensions. Instead of `htmx-ext-idiomorph` use `idiomorph`. For example `https://unpkg.com/idiomorph` or `npm install idiomorph`.
Note: [Idiomorph](/extensions/idiomorph) does not follow the naming convention of htmx extensions. Use `idiomorph` instead of `htmx-ext-idiomorph`. For example, `https://unpkg.com/idiomorph` or `npm install idiomorph`.

### Enabling Extensions

Expand Down
2 changes: 1 addition & 1 deletion www/content/extensions/head-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The [`hx-boost`](@/attributes/hx-boost.md) attribute moved htmx closer to this w
support for extracting the `title` tag out of head elements was eventually added, but full head tag support has never been
a feature of the library. This extension addresses that shortcoming.

## Installation
## Installing

The fastest way to install `head-support` is to load it via a CDN. Remember to always include the core htmx library before the extension.
```HTML
Expand Down
2 changes: 1 addition & 1 deletion www/content/extensions/htmx-1-compat.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title = "htmx 1.x Compatibility Extension"

The `htmx-1-compat` extension allows you to almost seamlessly upgrade from htmx 1.x to htmx 2.

## Installation
## Installing

The fastest way to install `htmx-1-compat` is to load it via a CDN. Remember to always include the core htmx library before the extension.
```HTML
Expand Down
2 changes: 1 addition & 1 deletion www/content/extensions/idiomorph.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ much smoother transition between the two states.
You can use the idiomorph morphing algorithm as a [swapping](@attributes/hx-swap) strategy by including the idiomorph
extension.

## Installation
## Installing

The fastest way to install `idiomorph` is to load it via a CDN. Remember to always include the core htmx library before the extension.
```HTML
Expand Down
2 changes: 1 addition & 1 deletion www/content/extensions/preload.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ behavior to fit your applications needs and use cases.
too many resources can negatively impact your visitors' bandwidth and your server performance by initiating too many
unused requests. Use this extension carefully!

## Installation
## Installing

The fastest way to install `preload` is to load it via a CDN. Remember to always include the core htmx library before the extension.
```HTML
Expand Down
2 changes: 1 addition & 1 deletion www/content/extensions/response-targets.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The value of each attribute can be:
* `previous <CSS selector>` which will scan the DOM backwards for the first element that matches the given CSS selector.
(e.g `previous .error` will target the closest previous sibling with `error` class)

## Installation
## Installing

The fastest way to install `response-targets` is to load it via a CDN. Remember to always include the core htmx library before the extension.
```HTML
Expand Down
2 changes: 1 addition & 1 deletion www/content/extensions/sse.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Use the following attributes to configure how SSE connections behave:
* `sse-close=<message-name>` - To close the EventStream gracefully when that message is received. This might be helpful
if you want to send information to a client that will eventually stop.

## Installation
## Installing

The fastest way to install `sse` is to load it via a CDN. Remember to always include the core htmx library before the extension.
```HTML
Expand Down
2 changes: 1 addition & 1 deletion www/content/extensions/ws.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Use the following attributes to configure how WebSockets behave:
event
or the event specified by [`hx-trigger`])

## Installation
## Installing

The fastest way to install `ws` is to load it via a CDN. Remember to always include the core htmx library before the extension.
```HTML
Expand Down

0 comments on commit 4f9bd42

Please sign in to comment.