https://github.com/shravanasati/ananke
HTML to Markdown converter.
https://github.com/shravanasati/ananke
cli converter go html html2md markdown
Last synced: about 2 months ago
JSON representation
HTML to Markdown converter.
- Host: GitHub
- URL: https://github.com/shravanasati/ananke
- Owner: shravanasati
- License: mit
- Created: 2024-12-30T05:31:16.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-12-18T19:21:20.000Z (6 months ago)
- Last Synced: 2025-12-21T00:43:55.524Z (6 months ago)
- Topics: cli, converter, go, html, html2md, markdown
- Language: Go
- Homepage:
- Size: 1.31 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.html
- License: LICENSE.txt
Awesome Lists containing this project
README
🌕 ananke
A HTML to markdown converter. This README.md is generated from the README.html file using ananke.
Powered by html2md.
Usage
ananke can read input from STDIN as well as from the arguments passed to it. If multiple arguments are passed, they
are concatenated.
Read a HTML file and print the Markdown output:
cat index.html | ananke
Read a HTML file and write a new Markdown file:
cat index.html | ananke > index.md
Read a HTML file, print the output as well as write it to a file:
cat index.html | ananke | tee /dev/tty index.md
Read HTML from a URL and print the output:
curl --no-progress-meter -L https://wikipedia.org/wiki/Anime | ananke