Last modified on 01 Oct 2021.

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 />Xuống dòng.
{% endhint %}

Danger blocks,

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

Success blocks,

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

Warning blocks,

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

Code blocks

{% code-tabs %}
{% code-tabs-item title="book.json" %}
```bash
cd directory/
```
{% endcode-tabs-item %}
{% endcode-tabs %}

Box with tabs

{% tabs %}
{% tab title="First Tab" %}
Nội dung tab 1.
{% endtab %}

{% tab title="Second Tab" %}
Nội dung tab 2.
{% endtab %}
{% endtabs %}

Tasks

* [x] Task 1
* [ ] Task 2
* [ ] Task 3