copy-down icon indicating copy to clipboard operation
copy-down copied to clipboard

Transform html to markdown

Results 5 copy-down issues
Sort by recently updated
recently updated
newest added

IMO should be added the capability to convert HTML tables to markdown tables.

https://www.markdownguide.org/basic-syntax#italic-best-practices For example, if you were to input the following Markdown: ```md _A_cat_meow_ ``` The expected output would be: ```html A_cat_meow ``` But instead it is: ```html A\_cat\_meow ```

https://github.com/jhy/jsoup/security/advisories/GHSA-gp7f-rwcx-9369 https://github.com/jhy/jsoup/releases/tag/jsoup-1.15.3 Upgrading to 1.15.3 should fix the potential XSS attacks

- Updated jsoup to 1.19.1. The updated to jsoup fixed CVE-2022-36033 which has been resolved in jsoup 1.15.3). Resolved #12 - Updated other dependencies - Migrated test execution to work...

**Correct output for normal space character** Input: `This input string with bold text.` Output: `**This input string** with bold text.` **Incorrect output for normal non breaking space** Input: `This input...