From 91e8e99abeb266aada2fce0e6c380a76a8a5d1ea Mon Sep 17 00:00:00 2001
From: chrispy <chrispy@synopsys.com>
Date: Fri, 15 Mar 2024 19:26:10 -0400
Subject: [PATCH] revert workaround example in README.rst for <script> and
 <style> now that it is properly fixed

Signed-off-by: chrispy <chrispy@synopsys.com>
---
 README.rst | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/README.rst b/README.rst
index 21a5972..06f319b 100644
--- a/README.rst
+++ b/README.rst
@@ -173,22 +173,6 @@ change:
     def md(html, **options):
         return ImageBlockConverter(**options).convert(html)
 
-.. code:: python
-
-    from markdownify import MarkdownConverter
-
-    class NoCssConverter(MarkdownConverter):
-        """
-        Create a custom MarkdownConverter that removes the CSS code by ignoring the `style` tag
-        """
-        def convert_style(self, el, text, convert_as_inline):
-            return ''
-
-    # Create shorthand method for conversion
-    def md(html, **options):
-        return NoCssConverter(**options).convert(html)
-
-
 
 Command Line Interface
 ======================