-
Couldn't load subscription status.
- Fork 20
Description
Hi,
I've just started using mdBook and have added mdBook-admonish. The look is great.
I am slightly concerned for the future when it comes to publishing my book in formats other than HTML. It looks like the mdBook renderers for PDF and EPUB are a long way from finished. So I was wondering about using PanDoc for more mature pdf and epub support.
However, I think I will need to get PanDoc to interpret my mdBook files as if they are GitHub flavoured Markdown as it doesn't support mdBook at present. GitHub seems to have standardised on
> **Note**
> This is a note
> **Warning**
> This is a warning
although that seems contentious. I see that CommonMark is also having discussions about what format to use and I see that this is also suggested as a "better" solution:
:::note
This is a note
:::
:::warning
This is a warning
:::
While Microsoft are apparently using
> [!NOTE]
> Information the user should notice even if skimming.
> [!TIP]
> Optional information to help a user be more successful.
> [!IMPORTANT]
> Essential information required for user success.
> [!CAUTION]
> Negative potential consequences of an action.
> [!WARNING]
> Dangerous certain consequences of an action.
So the route of dBook-admonish of
```admonish quote
test quote
```
is unusual. Do you have any thoughts about supporting GitHub format or whatever Commonmark eventually decide on?