Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/elliotgao2/tomd

Convert HTML to Markdown.
https://github.com/elliotgao2/tomd

html markdown python

Last synced: 3 months ago
JSON representation

Convert HTML to Markdown.

Lists

README

        

# tomd

![[License](https://pypi.python.org/pypi/tomd/)](https://img.shields.io/pypi/l/tomd.svg)
![[Pypi](https://pypi.python.org/pypi/tomd/)](https://img.shields.io/pypi/v/tomd.svg)
![[Python](https://pypi.python.org/pypi/tomd/)](https://img.shields.io/pypi/pyversions/tomd.svg)

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.

## Road map

- [x] Basic support
- [ ] Full support(Nested list)
- [ ] Command line tool

## Installation

`pip install tomd`

## Getting Started

Input

```python
import tomd

tomd.Tomd('

h1

').markdown
# or
tomd.convert('

h1

')
```

Output

```markdown
# h1
```

## Usage

```python
from tomd import Tomd

html="""

h1


h2


h3


h4


h5

h6

paragraph
link
img



  • 1

  • 2

  • 3



  1. 1

  2. 2

  3. 3


blockquote

inline code


block code


del
bold
italic
bold italic


th1
th2

td
td

td
td

"""

Tomd(html).markdown
```

## Result

```markdown
# 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

```