Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How HTML5 Boilerplate converts github wiki to its website?

Tags:

github

wiki

HTML5 Boilerplate has Doc page which integrated with github wiki.

How did they convert github wiki to normal html site?

like image 410
studiomohawk Avatar asked Feb 22 '23 00:02

studiomohawk


1 Answers

github supports git access to the Wiki content, stored in markdown format. (Example)

This can then be converted to HTML using this script.

In addition, commit hooks can be set up, such that whenever the wiki is modified, the new version is automatically fetched.

like image 173
Sebastian Paaske Tørholm Avatar answered Mar 05 '23 18:03

Sebastian Paaske Tørholm