URLs

Setting up

File book.json needs to be placed in the root of your gitbook repository on Github. Below are some settings that I have used.

{
	"plugins": [
		"mathjax"
	],
	"pluginsConfig": {
		"mathjax":{
				"forceSVG": true
		}
	}
}

Math in Gitbook

You have to use $$a+b$$ instead of $a+b$ for inline math. Others are the same as normal expressions in Markdown.

Blocks

Boxes

Info blocks,

{% hint style="info" %}
	Hint blocks.
	<br />Line break.
{% endhint %}

Danger blocks,

{% hint style="danger" %}
	Content.
{% endhint %}

Success blocks,

{% hint style="success" %}
	Content.
{% endhint %}

Warning blocks,

{% hint style="warning" %}
	Content.
{% endhint %}

Code blocks