Skip to content

Commit ae84f05

Browse files
authored
Merge pull request #95 from Paillat-dev/patch-2
docs: correct spelling in README
2 parents dde20d3 + 30cf7c1 commit ae84f05

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can use a relative path or Webpack alias to a source file.
2525
A template imported in JS will be compiled into [template function](#template-in-js). You can use the **template function** in JS to render the template with variables in runtime on the client-side in the browser.
2626

2727

28-
This plugin is an **advanced replacer** of `html-webpack-plugin` and many other [plugins and loaders](#list-of-plugins).
28+
This plugin is an **advanced replacement** of `html-webpack-plugin` and many other [plugins and loaders](#list-of-plugins).
2929

3030
<!--
3131
<table align="center">
@@ -399,14 +399,14 @@ module.exports = {
399399
> Don't use Webpack's `output.filename`, hold all relevant settings in one place - in plugin options.\
400400
> Both places have the same effect, but `js.filename` has priority over `output.filename`.
401401
402-
No additional template loader is required. The plugin handels templates with base `EJS`-like syntax automatically.
402+
No additional template loader is required. The plugin handles templates with base `EJS`-like syntax automatically.
403403
The default templating engine is [Eta](https://eta.js.org).
404404

405405
For using the native `EJS` syntax see [Templating with EJS](#using-template-ejs).\
406406
For using the `Handlebars` see [Templating with Handlebars](#using-template-handlebars).\
407407
For other templates see [Template engines](#template-engine).
408408

409-
For custom templates, you can use the [preprocessor](#loader-option-preprocessor) option to handels any template engine.
409+
For custom templates, you can use the [preprocessor](#loader-option-preprocessor) option to handle any template engine.
410410

411411
<table>
412412
<tr>
@@ -3954,7 +3954,7 @@ module.exports = {
39543954
new HtmlBundlerPlugin({
39553955
entry: {
39563956
index: {
3957-
// output dist/imdex.html
3957+
// output dist/index.html
39583958
import: './src/views/page/index.eta',
39593959
data: {
39603960
headline: 'Breaking Bad',
@@ -4026,7 +4026,7 @@ module.exports = {
40264026
new HtmlBundlerPlugin({
40274027
entry: {
40284028
index: {
4029-
// output dist/imdex.html
4029+
// output dist/index.html
40304030
import: './src/views/page/index.ejs',
40314031
data: {
40324032
headline: 'Breaking Bad',

0 commit comments

Comments
 (0)