How does the HTML5 Boilerplate convert a github widget to its website?

The HTML5 Boilerplate has a Doc page that integrates with Victoria github.

How did they convert the github wiki to a regular html site?

+4
source share
1 answer

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

This can then be converted to HTML using this script .

In addition, commit fixes can be set, so that whenever a wiki is updated, a new version is automatically retrieved.

+8
source

Source: https://habr.com/ru/post/1387874/


All Articles