https://github.com/cycloidio/html2txt
Convert .html to .txt format
https://github.com/cycloidio/html2txt
Last synced: 8 months ago
JSON representation
Convert .html to .txt format
- Host: GitHub
- URL: https://github.com/cycloidio/html2txt
- Owner: cycloidio
- License: mit
- Created: 2019-12-06T07:49:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-10T17:20:38.000Z (about 6 years ago)
- Last Synced: 2025-02-28T17:54:37.993Z (over 1 year ago)
- Language: Go
- Size: 8.79 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
### HTML2TXT
`html2txt` is a simple app for converting HTML files to TXT format.
It's using the https://github.com/jaytaylor/html2text under the hood.
To install:
```sh
go get github.com/cycloidio/html2txt
```
Example usage:
```sh
cat {{path_to_html_file}} | html2txt
```
Currently we're only supporting reading input from stdin and stdout for providing output.
All errors are being written to stderr.
For tests and more examples please visit https://github.com/jaytaylor/html2text.
For contributions, please introduce yourself to contribution guide.