From 9a03eac4b100f38e1ba6762aa1a32eae1fe229e7 Mon Sep 17 00:00:00 2001 From: "Chris. Webster" Date: Sun, 4 Dec 2022 15:54:49 -0800 Subject: [PATCH] Fix 404 in README.md The link to generic formatters in `Override formatting` was incorrect. --- packages/html-to-text/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/html-to-text/README.md b/packages/html-to-text/README.md index c3e87be..7373fa3 100644 --- a/packages/html-to-text/README.md +++ b/packages/html-to-text/README.md @@ -287,7 +287,7 @@ console.log(text); // Hello World! New in version 9: metadata object can be provided as the last optional argument of the `convert` function (or the function returned by `compile` function). It can be accessed by formatters as `builder.metadata`. -Refer to [generic formatters](https://github.com/html-to-text/node-html-to-text/blob/master/packages/base/src/formatter.js) of the base package and [text formatters](https://github.com/html-to-text/node-html-to-text/blob/master/packages/html-to-text/src/text-formatters.js) of this package for more examples. The easiest way to write your own is to pick an existing one and customize. +Refer to [generic formatters](https://github.com/html-to-text/node-html-to-text/blob/master/packages/base/src/generic-formatters.js) of the base package and [text formatters](https://github.com/html-to-text/node-html-to-text/blob/master/packages/html-to-text/src/text-formatters.js) of this package for more examples. The easiest way to write your own is to pick an existing one and customize. Refer to [BlockTextBuilder](https://github.com/html-to-text/node-html-to-text/blob/master/packages/base/src/block-text-builder.js) for available functions and arguments.