Skip to main content

A markdown extension for defining collapsible areas

Project description

Allow the definition of collapsible blocks in Markdown.

Generated code is designed for compatibility with Bootstrap.

Based on the official Admonition extension.

Usage

Blocks starting with <<< will start collapsed, blocks starting with >>> will start uncollapsed.

Syntax:

<<< [<Panel Id>] "<Panel Title>"
    Paragraph1

    Paragraph2

or

>>> [<Panel Id>] "<Panel Title>"
    Paragraph1

    Paragraph2

Example

<<< "Collapsible stuff"
    * Stuff 1
    * Stuff 2
    * Stuff 3
    * Stuff 4

becomes

<div class="panel panel-default panel-collapsible">
    <div class="panel-heading">
        <a data-toggle="collapse" data-target="#collapse1" />
    </div>
    <div id="collapse1" class="panel-body collapse in">
        <ul>
            <li>Stuff 1</li>
            <li>Stuff 2</li>
            <li>Stuff 3</li>
            <li>Stuff 4</li>
        </ul>
    </div>
</div>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mdx_collapse-0.1.0.tar.gz (7.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page