March 23, 2022
Cecil 5.87.0 released
Features
Markdown Note block-level element
A new Markdown element is available: Note.
It encapsulates a Markdown text (Information, tip, important, etc. What you need) in an <aside> element with a dedicated CSS class, named by the type of the note, i.e. class="note note-<type>".
:::tip
**Tip:** This is an advice.
::: Is converted to:
<aside class="note note-tip">
<p>
<strong>Tip:</strong> This is an advice.
</p>
</aside> In the previous example
tipis the type of the note.
Examples in the context of this website:
Fixes
- The
--pagecommand option must support subdirectory - Reload browser on first build
Misc
- Dependencies updated
- Documentation updated and fixed
Release notes on GitHub