You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
770 B

4 years ago
  1. # link2epub [![Go Report Card](https://goreportcard.com/badge/github.com/arnaucube/link2epub)](https://goreportcard.com/report/github.com/arnaucube/link2epub)
  2. Very simple tool to download articles and convert it to `.epub`/`.mobi` files.
  3. ## Download
  4. - Binary can be:
  5. - downloaded from [releases section](https://github.com/arnaucube/link2epub/releases)
  6. - compiled with `go build`
  7. ## Usage
  8. Needs [calibre](https://calibre-ebook.com/) in order to convert to `.epub` and `.mobi`.
  9. ```bash
  10. ./link2epub -l https://link.com/to-the-article
  11. // optionally add extension (by default .mobi)
  12. ./link2epub -l https://link.com/to-the-article -type mobi
  13. ./link2epub -l https://link.com/to-the-article -type epub
  14. ```
  15. Thanks to [@dhole](https://github.com/dhole) for the advisment.