Skip to content

Commit 7427480

Browse files
committed
docs: update base url of documentation pages in readme
1 parent 3261263 commit 7427480

File tree

4 files changed

+31
-27
lines changed

4 files changed

+31
-27
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 4.21.1 (2025-07-21)
4+
5+
- docs: update base url of documentation pages in readme
6+
37
## 4.21.0 (2025-07-02)
48

59
- feat: optimize compilation Handlebars templates into JS-templates including only used helpers and partials, #183

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ npm install html-bundler-webpack-plugin --save-dev
3737

3838
## Documentation
3939

40-
- [Get Started](https://webdiscus.github.io/html-bundler-webpack-plugin/category/getting-started)
41-
- [Migrating from `html-webpack-plugin`](https://webdiscus.github.io/html-bundler-webpack-plugin/getting-started/migrating-from-html-webpack-plugin)
42-
- [Features](https://webdiscus.github.io/html-bundler-webpack-plugin/introduction#key-features)
43-
- [Options](https://webdiscus.github.io/html-bundler-webpack-plugin/category/options)
44-
- [Guides](https://webdiscus.github.io/html-bundler-webpack-plugin/guides)
45-
- [F.A.Q.](https://webdiscus.github.io/html-bundler-webpack-plugin/faq/import-url-in-css)
40+
- [Get Started](https://webdiscus.github.io/html-bundler-docs/category/getting-started)
41+
- [Migrating from `html-webpack-plugin`](https://webdiscus.github.io/html-bundler-docs/getting-started/migrating-from-html-webpack-plugin)
42+
- [Features](https://webdiscus.github.io/html-bundler-docs/introduction#key-features)
43+
- [Options](https://webdiscus.github.io/html-bundler-docs/category/options)
44+
- [Guides](https://webdiscus.github.io/html-bundler-docs/guides)
45+
- [F.A.Q.](https://webdiscus.github.io/html-bundler-docs/faq/import-url-in-css)
4646

4747
For full documentation, visit [HTML Bundler Docs](https://webdiscus.github.io/html-bundler-webpack-plugin).
4848

4949
## Read it
5050

51-
- [Why do developers migrate from Webpack?](https://webdiscus.github.io/html-bundler-webpack-plugin/introduction#why-do-developers-migrate-from-webpack)
51+
- [Why do developers migrate from Webpack?](https://webdiscus.github.io/html-bundler-docs/introduction#why-do-developers-migrate-from-webpack)
5252
- [Use a HTML file as an entry point?](https://github.com/webpack/webpack/issues/536) (Webpack issue, #536)
5353
- [Using HTML Bundler Plugin for Webpack to generate HTML files](https://dev.to/webdiscus/using-html-bundler-plugin-for-webpack-to-generate-html-files-30gd)
5454
- [Keep output directory structure in Webpack](https://dev.to/webdiscus/how-to-keep-the-folder-structure-of-source-templates-in-webpack-for-output-html-files-39bj)

README.npm.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ npm install html-bundler-webpack-plugin --save-dev
2424

2525
## Highlights
2626

27-
- An [entry point](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-entry) is any HTML template. **Start from HTML or template**, not from JS.
28-
- **Automatically** processes templates found in the [entry directory](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-entry#template-directory-reference).
29-
- Built-in support for [template engines](https://webdiscus.github.io/html-bundler-webpack-plugin/category/template-engines): [Eta](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/preprocessor/eta), [EJS](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/preprocessor/ejs), [Handlebars](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/preprocessor/handlebars), [Nunjucks](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/preprocessor/nunjucks), [Pug](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/preprocessor/pug), [Tempura](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/preprocessor/tempura), [TwigJS](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/preprocessor/twig), [LiquidJS](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/preprocessor/liquid).
27+
- An [entry point](https://webdiscus.github.io/html-bundler-docs/plugin-options-entry) is any HTML template. **Start from HTML or template**, not from JS.
28+
- **Automatically** processes templates found in the [entry directory](https://webdiscus.github.io/html-bundler-docs/plugin-options-entry#template-directory-reference).
29+
- Built-in support for [template engines](https://webdiscus.github.io/html-bundler-docs/category/template-engines): [Eta](https://webdiscus.github.io/html-bundler-docs/guides/preprocessor/eta), [EJS](https://webdiscus.github.io/html-bundler-docs/guides/preprocessor/ejs), [Handlebars](https://webdiscus.github.io/html-bundler-docs/guides/preprocessor/handlebars), [Nunjucks](https://webdiscus.github.io/html-bundler-docs/guides/preprocessor/nunjucks), [Pug](https://webdiscus.github.io/html-bundler-docs/guides/preprocessor/pug), [Tempura](https://webdiscus.github.io/html-bundler-docs/guides/preprocessor/tempura), [TwigJS](https://webdiscus.github.io/html-bundler-docs/guides/preprocessor/twig), [LiquidJS](https://webdiscus.github.io/html-bundler-docs/guides/preprocessor/liquid).
3030
- Built-in support for **Markdown** `*.md` files in templates, see [Markdown demo](https://stackblitz.com/edit/markdown-to-html-webpack?file=webpack.config.js) in browser.
31-
- Allows to [pass data](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-entry#entrydescriptiondata) into a template.
32-
- **Resolve** [source files](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-sources) of [`scripts`](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-js), [`styles`](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-css), images and other assets in HTML:
31+
- Allows to [pass data](https://webdiscus.github.io/html-bundler-docs/plugin-options-entry#entrydescriptiondata) into a template.
32+
- **Resolve** [source files](https://webdiscus.github.io/html-bundler-docs/plugin-options-sources) of [`scripts`](https://webdiscus.github.io/html-bundler-docs/plugin-options-js), [`styles`](https://webdiscus.github.io/html-bundler-docs/plugin-options-css), images and other assets in HTML:
3333
- `<link href="./style.scss" rel="stylesheet">`
3434
- `<script src="./app.ts" defer="defer"></script>`
3535
- `<link href="../images/favicon.svg" type="image/svg" rel=icon />`
@@ -39,27 +39,27 @@ npm install html-bundler-webpack-plugin --save-dev
3939
- `@font-face { src: url('@fonts/monaco.woff2') ... }`
4040
- `background-image: url(../images/picture.png);`\
4141
Resolved assets will be processed and replaced with correct URLs in the generated CSS, without using [resolve-url-loader](https://github.com/bholloway/resolve-url-loader).
42-
- **Resolve** [route URLs](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-router) in `a.href`, useful for navigation in multi-pages.
43-
- **Inline** [JS](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/inline-js), [CSS](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/inline-css) and [Images](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/inline-images) into HTML. See [how to inline all resources](https://webdiscus.github.io/html-bundler-webpack-plugin/guides/inline-all-assets) into single HTML file.
42+
- **Resolve** [route URLs](https://webdiscus.github.io/html-bundler-docs/plugin-options-router) in `a.href`, useful for navigation in multi-pages.
43+
- **Inline** [JS](https://webdiscus.github.io/html-bundler-docs/guides/inline-js), [CSS](https://webdiscus.github.io/html-bundler-docs/guides/inline-css) and [Images](https://webdiscus.github.io/html-bundler-docs/guides/inline-images) into HTML. See [how to inline all resources](https://webdiscus.github.io/html-bundler-docs/guides/inline-all-assets) into single HTML file.
4444
- Supports importing styles in JavaScript.
4545
- Supports styles used in `*.vue`.
46-
- Supports the [HMR for CSS](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-css) to update CSS in browser without a full reload.
47-
- Watches for changes in the [data file](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-entry#entrydescriptiondata) linked to the template in the plugin option.
48-
- Generates the [preload](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-preload) tags for fonts, images, video, scripts, styles.
49-
- Generates the [integrity](https://webdiscus.github.io/html-bundler-webpack-plugin/plugin-options-integrity) attribute in the `link` and `script` tags.
50-
- Generates the [favicons](https://webdiscus.github.io/html-bundler-webpack-plugin/Plugins/favicons) of different sizes for various platforms.
46+
- Supports the [HMR for CSS](https://webdiscus.github.io/html-bundler-docs/plugin-options-css) to update CSS in browser without a full reload.
47+
- Watches for changes in the [data file](https://webdiscus.github.io/html-bundler-docs/plugin-options-entry#entrydescriptiondata) linked to the template in the plugin option.
48+
- Generates the [preload](https://webdiscus.github.io/html-bundler-docs/plugin-options-preload) tags for fonts, images, video, scripts, styles.
49+
- Generates the [integrity](https://webdiscus.github.io/html-bundler-docs/plugin-options-integrity) attribute in the `link` and `script` tags.
50+
- Generates the [favicons](https://webdiscus.github.io/html-bundler-docs/Plugins/favicons) of different sizes for various platforms.
5151
- Minimizes generated HTML.
52-
- You can create custom plugins using the provided [Plugin Hooks](https://webdiscus.github.io/html-bundler-webpack-plugin/hooks-and-callbacks).
52+
- You can create custom plugins using the provided [Plugin Hooks](https://webdiscus.github.io/html-bundler-docs/hooks-and-callbacks).
5353

5454
[>> GitHub](https://github.com/webdiscus/html-bundler-webpack-plugin)
5555

5656
## Documentation
5757

58-
- [Get Started](https://webdiscus.github.io/html-bundler-webpack-plugin/category/getting-started)
59-
- [Migrating from `html-webpack-plugin`](https://webdiscus.github.io/html-bundler-webpack-plugin/getting-started/migrating-from-html-webpack-plugin)
60-
- [Features](https://webdiscus.github.io/html-bundler-webpack-plugin/introduction#key-features)
61-
- [Options](https://webdiscus.github.io/html-bundler-webpack-plugin/category/options)
62-
- [Guides](https://webdiscus.github.io/html-bundler-webpack-plugin/guides)
63-
- [F.A.Q.](https://webdiscus.github.io/html-bundler-webpack-plugin/faq/import-url-in-css)
58+
- [Get Started](https://webdiscus.github.io/html-bundler-docs/category/getting-started)
59+
- [Migrating from `html-webpack-plugin`](https://webdiscus.github.io/html-bundler-docs/getting-started/migrating-from-html-webpack-plugin)
60+
- [Features](https://webdiscus.github.io/html-bundler-docs/introduction#key-features)
61+
- [Options](https://webdiscus.github.io/html-bundler-docs/category/options)
62+
- [Guides](https://webdiscus.github.io/html-bundler-docs/guides)
63+
- [F.A.Q.](https://webdiscus.github.io/html-bundler-docs/faq/import-url-in-css)
6464

6565
For full documentation, visit [HTML Bundler Docs](https://webdiscus.github.io/html-bundler-webpack-plugin).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "html-bundler-webpack-plugin",
3-
"version": "4.21.0",
3+
"version": "4.21.1",
44
"description": "Generates complete single-page or multi-page website from source assets. Built-in support for Markdown, Eta, EJS, Handlebars, Nunjucks, Pug. Alternative to html-webpack-plugin.",
55
"keywords": [
66
"html",

0 commit comments

Comments
 (0)