Skip to content

Updating to the new mkdocs block standard

References

Old:

??? "A Details Summary"
    Some content.

    !!! warning "Some admonition warning"
        Some content.

        === "A Tab"
            Some more content.

        === " Another Tab"
            Some more content.

New:

/// details  | A Details Summary
Some content.

//// warning | Some admonition warning
Some content.

///// tab | A Tab
Some more content.
/////

///// tab | Another Tab
Some more content.
/////
////
///
Edited by Foerster, Thomas