diff --git a/README.md b/README.md index 03280ed..1078698 100644 --- a/README.md +++ b/README.md @@ -91,27 +91,3 @@ wrapping. - `options.ignoreTags (string[], optional)` – Tags to keep intact in output (e.g., ["b", "mark"]) - `options.wrapWords (number, optional)` – Maximum words per line (takes priority over wrapLength) - `options.wrapLength (number, optional)` – Maximum characters per line - -## Examples - -```ts -import { textify } from 'html-textify'; - -const html = ` -

Title

-

Paragraph with bold and italic

- -`; - -const text = textify({ html }); -console.log(text); - -/* Output: -Title - -Paragraph with **bold** and *italic* - -- Item 1 -- Item 2 -*/ -```