Skip to content

Commit f0817e8

Browse files
committed
Fix typos and note for community repos not hosted outside this repo
1 parent 8e8e187 commit f0817e8

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

www/content/docs.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ npm install htmx-ext-extension-name
11561156
After installing, you'll need to use appropriate tooling to bundle `node_modules/htmx-ext-extension-name/dist/extension-name.js` (or `.min.js`). For example, you might bundle the extension with htmx core from `node_modules/htmx.org/dist/htmx.js` and project-specific code.
11571157

11581158
If you are using a bundler to manage your javascript (e.g. Webpack, Rollup):
1159-
- Install `htmx.org` and `htx-ext-extension-name` via npm (replace `extension-name` with the name of the extension)
1159+
- Install `htmx.org` and `htmx-ext-extension-name` via npm (replace `extension-name` with the name of the extension)
11601160
- Import both packages to your `index.js`
11611161
```JS
11621162
import `htmx.org`;
@@ -1165,6 +1165,8 @@ import `htmx-ext-extension-name`; // replace `extension-name` with the name of t
11651165

11661166
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`.
11671167

1168+
Note: Community extensions hosted outside this repository might have different installation instructions. Please check the corresponding repository for set-up guidance.
1169+
11681170
### Enabling Extensions
11691171

11701172
To enable an extension, add a `hx-ext="extension-name"` attribute to `<body>` or another HTML element (replace `extension-name` with the name of the extension). The extension will be applied to all child elements.

www/content/extensions/head-support.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ npm install htmx-ext-head-support
3535
After installing, you'll need to use appropriate tooling to bundle `node_modules/htmx-ext-head-support/dist/head-support.js` (or `.min.js`). For example, you might bundle the extension with htmx core from `node_modules/htmx.org/dist/htmx.js` and project-specific code.
3636

3737
If you are using a bundler to manage your javascript (e.g. Webpack, Rollup):
38-
- Install `htmx.org` and `htx-ext-head-support` via npm
38+
- Install `htmx.org` and `htmx-ext-head-support` via npm
3939
- Import both packages to your `index.js`
4040
```JS
4141
import `htmx.org`;

www/content/extensions/htmx-1-compat.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ npm install htmx-ext-htmx-1-compat
2626
After installing, you'll need to use appropriate tooling to bundle `node_modules/htmx-ext-htmx-1-compat/dist/htmx-1-compat.js` (or `.min.js`). For example, you might bundle the extension with htmx core from `node_modules/htmx.org/dist/htmx.js` and project-specific code.
2727

2828
If you are using a bundler to manage your javascript (e.g. Webpack, Rollup):
29-
- Install `htmx.org` and `htx-ext-htmx-1-compat` via npm
29+
- Install `htmx.org` and `htmx-ext-htmx-1-compat` via npm
3030
- Import both packages to your `index.js`
3131
```JS
3232
import `htmx.org`;

www/content/extensions/preload.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ npm install htmx-ext-preload
3232
After installing, you'll need to use appropriate tooling to bundle `node_modules/htmx-ext-preload/dist/preload.js` (or `.min.js`). For example, you might bundle the extension with htmx core from `node_modules/htmx.org/dist/htmx.js` and project-specific code.
3333

3434
If you are using a bundler to manage your javascript (e.g. Webpack, Rollup):
35-
- Install `htmx.org` and `htx-ext-preload` via npm
35+
- Install `htmx.org` and `htmx-ext-preload` via npm
3636
- Import both packages to your `index.js`
3737
```JS
3838
import `htmx.org`;

www/content/extensions/response-targets.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ npm install htmx-ext-response-targets
4444
After installing, you'll need to use appropriate tooling to bundle `node_modules/htmx-ext-response-targets/dist/response-targets.js` (or `.min.js`). For example, you might bundle the extension with htmx core from `node_modules/htmx.org/dist/htmx.js` and project-specific code.
4545

4646
If you are using a bundler to manage your javascript (e.g. Webpack, Rollup):
47-
- Install `htmx.org` and `htx-ext-response-targets` via npm
47+
- Install `htmx.org` and `htmx-ext-response-targets` via npm
4848
- Import both packages to your `index.js`
4949
```JS
5050
import `htmx.org`;

www/content/extensions/sse.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ npm install htmx-ext-sse
4545
After installing, you'll need to use appropriate tooling to bundle `node_modules/htmx-ext-sse/dist/sse.js` (or `.min.js`). For example, you might bundle the extension with htmx core from `node_modules/htmx.org/dist/htmx.js` and project-specific code.
4646

4747
If you are using a bundler to manage your javascript (e.g. Webpack, Rollup):
48-
- Install `htmx.org` and `htx-ext-sse` via npm
48+
- Install `htmx.org` and `htmx-ext-sse` via npm
4949
- Import both packages to your `index.js`
5050
```JS
5151
import `htmx.org`;

www/content/extensions/ws.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ npm install htmx-ext-ws
3939
After installing, you'll need to use appropriate tooling to bundle `node_modules/htmx-ext-ws/dist/ws.js` (or `.min.js`). For example, you might bundle the extension with htmx core from `node_modules/htmx.org/dist/htmx.js` and project-specific code.
4040

4141
If you are using a bundler to manage your javascript (e.g. Webpack, Rollup):
42-
- Install `htmx.org` and `htx-ext-ws` via npm
42+
- Install `htmx.org` and `htmx-ext-ws` via npm
4343
- Import both packages to your `index.js`
4444
```JS
4545
import `htmx.org`;

0 commit comments

Comments
 (0)