mdbook-gitbook
mdBook preprocessor to properly render GitBook specific syntax in mdBook.
You can compare this preprocessor to GitBook by looking at the same sample book on:
To see the list of existing and supported syntax, see this GitHub issue.
Note:
This mdBook preprocessor was written for local rendering of the NorthstarWiki where it covers the majority of the used GitBook-specific syntax. As such I'm not planning to add support for more GitBook widgets etc, however contributions to expand the supported syntax are more than welcome <3
Similarly, if you'd like to take over maintainership or ownership of this crate, please get in touch via an issue in the GitHub repo of this crate.
Usage
First, install the preprocessor:
Then, add the preprocessor to your book.toml
:
[]
= ["Jill Doe"]
= "en"
= false
= "src"
= "My awesome Book"
# ADD THIS
[]
Development
How it works
The way this preprocessor works is primarily by using regexes to search for specific patterns like
{% embed url="URL_HERE" %}
and then replacing it with the corresponding HTML code like
EXTRACTED_PAGE_TITLE
EXTRACTED_PAGE_NAME
Expanding the preprocessor
The currently supported syntax is tracked in this GitHub issue
To add support for some currently unsupported syntax, expand the existing existing main render loop in lib.rs
/// Apply to all chapters
with a function that calls the corresponding parsing logic.
In your parsing logic, use regex or any other methods to scan for the specific pattern of the syntax you want to support and replace it with the corresponding HTML code.