airtai / fastkafka

FastKafka is a powerful and easy-to-use Python library for building asynchronous web services that interact with Kafka topics. Built on top of Pydantic, AIOKafka and AsyncAPI, FastKafka simplifies the process of writing producers and consumers for Kafka topics.
https://fastkafka.airt.ai
Apache License 2.0
41 stars 2 forks source link

Admonitions are not being parsed correctly #40

Open sternakt opened 1 year ago

sternakt commented 1 year ago

Previous syntax for admonitions was:

!!! info \"Title\"

    Text

New syntax, after moving to Docusaurus is:

:::info Title

Text

:::

The issue is, that the documentation is being first parsed by mkdocs, and ::: is a keyword: https://mkdocstrings.github.io/usage/ So we cant just replace !!! with :::.