html转换md,转换HTML到Markdown – tomd
程序员文章站
2022-04-09 21:41:50
...
tomd
When crawling online articles such as news, blogs, etc. I want to save them in markdown files but not databases. Tomd has the ability of converting a HTML that converted from markdown. If a HTML can’t be described by markdown, tomd can’t convert it right. Tomd is a python tool.
Installation
pip install tomd
Getting Started
Input
import tomd
tomd.Tomd('
h1
').markdown# or
tomd.convert('
h1
')Output
# h1
Usage
from tomd import Tomd
html="""
h1
h2
h3
h4
h5
h6
paragraph
img
- 1
- 2
- 3
- 1
- 2
- 3
blockquote
inline code
block code
del
bold
italic
bold italic
th1th2
tdtdtdtd"""
Tomd(html).markdown
Result
# h1
## h2
### h3
#### h4
##### h5
###### h6
paragraph
[link](https://github.com)
![img](https://github.com)
- 1
- 2
- 3
1. 1
1. 2
1. 3
> blockquote
`inline code`
block code
~~del~~
**bold**
*italic*
***bold italic***
---
|th1|th2
|------
|td|td
|td|td
推荐阅读
-
Python3转换html到pdf的不同解决方案
-
用markdown2html把md转换成html
-
Python转换HTML到Text纯文本的方法
-
PHP ajax请求到的数据获取到的结果为Html格式,是当前页面的html,转换不成json,求破解
-
MVC导出数据到EXCEL新方法:将视图或分部视图转换为HTML后再直接返回FileResult_html/css_WEB-ITnose
-
MVC导出数据到EXCEL新方法:将视图或分部视图转换为HTML后再直接返回FileResult_html/css_WEB-ITnose
-
如何将ipynb转换为html,md,pdf等格式
-
如何将ipynb转换为html,md,pdf等格式
-
Python3转换html到pdf的不同解决方案
-
PHP ajax请求到的数据获取到的结果为Html格式,是当前页面的html,转换不成json,求破解