From 4289975555ba4ec84d575c51aaefdf6a49764f42 Mon Sep 17 00:00:00 2001 From: Sam Arjmandi Date: Fri, 17 Oct 2025 20:13:11 -0600 Subject: [PATCH] docs(readme): remove redundant examples --- README.md | 24 ------------------------ 1 file changed, 24 deletions(-) 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 -*/ -```