Formats and numbers each exercise. Numbering is automatic and starts at 1. An exercise can be labelled to allow for cross-referencing.
Install via npm:
npm install honkit-plugin-exercise --save-dev
Add the plugin to your book.json
:
{
plugins: [ "exercise" ]
}
An exercise is added by the block:
{% exercise %}{% endexercise %}
Insert your exercise text here.
To help cross-reference an exercise, you can add a label. The label text should not have any white spaces.
{% exercise label="my_label" %}{% endexercise %}
Insert your exercise text here.
For example, the following exercise blocks
{% exercise %}{% endexercise %}
What Is the airspeed velocity of an unladen swallow?
{% exercise label="a_label" %}{% endexercise %}
What do you mean? An African or a European swallow?
would be rendered as
Cross-reference an exercise like how you cross-reference a section in a Markdown
file. In the above example, the exercise having the label "a_label"
can be
cross-referenced as:
[this exercise](/path/to/file.md#a_label)