Alir3z4 / html2text

Convert HTML to Markdown-formatted text.
alir3z4.github.io/html2text/
GNU General Public License v3.0
1.74k stars 266 forks source link

How can I parse the `<pre>` tag into tri-backquote style? #386

Open wizardforcel opened 2 years ago

wizardforcel commented 2 years ago

For example:

<pre><code>print('hello')</code></pre>

into

```
print('hello')
```