Resolves 7
Supports whitespaces after leading `>` symbols.
md
> [!info]
> > [!info]
> > > Blockquote
is now possible, previous syntax:
md
> [!info]
>> [!info]
>> > Blockquote
Also added a new option (enabled by default) to handle breakless lists
This shouldn't interfere with the previous syntax
md
Before:
> [!info]
> Text here
>
> - list item
> - another list item
After:
> [!info]
> Text here
> - list item
> - another list item
Disable the new behavior
This behavior _shouldn't_ cause any issues, but can be disabled by setting `breakless_lists` to `false` in the `mkdocs.yml` configuration file
yaml
plugins:
- search
- callouts:
breakless_lists: false