How can I get html of book ?
Closed this issue · 2 comments
c5soft commented
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?
quietboil commented
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.
c5soft commented
good