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

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.

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