Skip to main content

PyPI version

Markdown XBlock

Based on the HTML XBlock by OpenCraft

Introduction

This XBlock allows course authors to create and edit course content in Markdown and displays it as HTML.

Installation with Tutor

You may install the markdown-xblock to your Tutor environment by adding it to the OPENEDX_EXTRA_PIP_REQUIREMENTS list in config.yml:

OPENEDX_EXTRA_PIP_REQUIREMENTS:
- markdown-xblock==2.4.0

Or, if you prefer to install directly from Git:

OPENEDX_EXTRA_PIP_REQUIREMENTS:
- git+https://github.com/cleura/markdown-xblock.git@v2.4.0

For additional information, please refer to the official documentation.

The minimum supported Python version is 3.8.

To enable this block, add "markdown" to the course's advanced module list. The option Markdown will appear in the advanced components.

Once you've added a new Markdown component to your course, you can also add custom CSS classes to the component by selecting EDIT/Settings and adding to the classes list (Note: use double quotes " "). Example:

["custom-css-class-1", "custom-css-class-2"]

The Markdown block uses markdown2 to translate the content into HTML, by default the following extras are included:

  • "code-friendly"
  • "fenced-code-blocks"
  • "footnotes"
  • "tables"
  • "use-file-vars"

Configuration

It is possible to configure more extras, by adding to the extras list under "markdown" key in XBLOCK_SETTINGS in your Tutor plugin that patches openedx-common-settings

By default, the safe_mode for markdown2 library is enabled and set to replace, which means that writing inline HTML is not allowed and if written, all tags will be replaced with [HTML_REMOVED]. You can also set safe_mode to escape, which only replaces <, > and & with &lt;, &gt; and &amp;. To disable safe mode altogether and allow inline HTML, you'll need to set safe_mode to False or None in XBLOCK_SETTINGS. Please note that setting safe_mode to the empty string ('') also disables safe mode.

Example (YAML plugin):

name: markdown
version: 1.0.0
patches:
  openedx-common-settings: |
    XBLOCK_SETTINGS["markdown"] = {
        "extras": [
            "code-friendly",
            "fenced-code-blocks",
            "footnotes",
            "tables",
            "header-ids",
            "metadata",
            "pyshell",
            "smarty-pants",
            "strike",
            "target-blank-links",
            "use-file-vars",
            "wiki-tables",
            "tag-friendly"
        ],
        "safe_mode": "escape"
    }

Usage notes

Images

To include images in your markdown content, use the standard Markdown inline image syntax. Your course images will normally live in the static/images directory, relative to the root of your course, so you would include an image like this:

![alt text for example image](/static/images/example.png)

The XBlock will then mangle your image reference into a static asset reference.

Links

If Markdown XBlock content contains links to another course, and your platform is configured with the XBlock's safe mode enabled, a link like

[link text](https://example.com/courses/course-v1:Org+Class+Version/about)

will, when rendered, turn its + characters into whitespace. That isn't actually wrong, because both + and the %20 escape sequence in URLs are meant to represent whitespace, yet Open edX uses the + character to mean something other than whitespace, and that's a bit of a problem.

To preserve Open edX course URL references, please explicitly encode the + character as %2B, like so:

[link text](https://example.com/courses/course-v1:Org%2BClass%2BVersion/about)

Development

If you'd like to develop on this repo in Tutor, follow the steps described in the documentation.

Running tests

The testing framework is built on tox. After installing tox, you can run tox from your Git checkout of this repository.

To throw away and rebuild the testing environment, run:

$ tox -r

For running PEP-8 checks only:

$ tox -e flake8

Download files

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

Source Distribution

markdown_xblock-2.4.0.tar.gz (610.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

markdown_xblock-2.4.0-py3-none-any.whl (627.9 kB view details)

Uploaded Python 3

File details

Details for the file markdown_xblock-2.4.0.tar.gz.

File metadata

  • Download URL: markdown_xblock-2.4.0.tar.gz
  • Upload date:
  • Size: 610.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for markdown_xblock-2.4.0.tar.gz
Algorithm Hash digest
SHA256 7e6146bfbfd71e6419b87524ba12d96b2269fcfd5c6d244ba4c08e007f943199
MD5 15f308a934ff8d20e3aeee738b674545
BLAKE2b-256 7cd519a3419ef5d7c81bfee7ac8643238b38fac40a56688ddf8ab807f13015af

See more details on using hashes here.

Provenance

The following attestation bundles were made for markdown_xblock-2.4.0.tar.gz:

Publisher: release.yml on cleura/markdown-xblock

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file markdown_xblock-2.4.0-py3-none-any.whl.

File metadata

  • Download URL: markdown_xblock-2.4.0-py3-none-any.whl
  • Upload date:
  • Size: 627.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for markdown_xblock-2.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3c3b43452052b1241a14b00c193ae5092dcf9faba6fb5e10bdb675f517167f9e
MD5 f83ab9b6e809527cc61565e1fa08da7a
BLAKE2b-256 c17129eaaa57978e851a34b180d1c87774775454c326825293996f18dbe8e8b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for markdown_xblock-2.4.0-py3-none-any.whl:

Publisher: release.yml on cleura/markdown-xblock

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.4.0 This release

2 files

2.3.0

1 file

2.2.0

1 file

2.1.0

1 file

2.0.0

1 file

1.6.0

1 file

1.5.0

1 file

1.4.0

1 file

1.3.0

1 file

1.2.0

1 file

1.1.1

1 file

1.1.0

1 file

1.0.7

1 file

1.0.6

1 file

1.0.5

1 file

1.0.4

1 file

1.0.3

1 file

1.0.2

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page