GESIS-Methods-Hub / andrew

Content Aggregation System for tutorials and vignette of reproducible computational methods.
https://gesis-methods-hub.github.io/andrew/
MIT License
2 stars 0 forks source link

Support Quarto's Callout Blocks #149

Open rgaiacs opened 1 year ago

rgaiacs commented 1 year ago

Consider

---
title: "MWE"
author: Raniere Silva
---

Foo

::: {.callout-important}

This is important!

:::

We are using quarto render mwe.md --from markdown --to markdown --output mwe.md-output that produces

---
author:
- Raniere Silva
title: MWE
toc-title: Table of contents
---

Foo

<div>

> **Important**
>
> This is important!

</div>

Which is render by Quarto as

Screenshot 2023-07-25 at 13-36-57 Demo of MethodsHub - Minimal Example of Tutorial in Quarto Markdown