Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GitHub README.html

Tags:

github

I have a wealth of documentation for a project I would like to make open source (through github).

The problem is that github README does not support .html files.

I tried html2text with absolutely horrid results.

Is there a fast easy way to convert naturalDocs(or any html documentation) type output to a git readme?

Thanks guys.

like image 881
Roderick Obrist Avatar asked Feb 25 '12 12:02

Roderick Obrist


2 Answers

You could convert it "back" to Markdown via one of the following methods:

  1. http://fvsch.com/code/remarkdown/
  2. https://tibastral.github.io/markdownify/
  3. http://johnmacfarlane.net/pandoc/try

Good luck

like image 103
three Avatar answered Oct 21 '22 00:10

three


You can use GitHub Pages to publish your documentation and write a short information with a link to that in your README file using RDoc or Markdown format.

like image 23
iltempo Avatar answered Oct 20 '22 22:10

iltempo