quietboil/sibyl

How can I get html of book ?

Closed this issue · 2 comments

I have cloned Sibyl to my local disk and noticed a "book" folder containing reference documents in Markdown format. I am wondering if there is a command that can be used to convert the Markdown files to HTML. How can I achieve this?

Use mdbook. Once you have the tool, you would run this command from the project's root:

mdbook build book

It'll create book/pages where you will find index.html which is the file that starts the generated book.

good