So apparently, "Image Embedding Extension for Python-Markdown" was never
actually enabled. When it was introduced [1], it was already commented
out!?
[1] 93d15d15d0
19 lines
595 B
Python
19 lines
595 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from wiki.core.plugins.base import BasePlugin
|
|
from wiki.core.plugins import registry as plugin_registry
|
|
|
|
from course_wiki.plugins.markdownedx import mdx_circuit, mdx_mathjax, mdx_video
|
|
|
|
|
|
class ExtendMarkdownPlugin(BasePlugin):
|
|
"""
|
|
This plugin simply loads all of the markdown extensions we use in edX.
|
|
"""
|
|
|
|
markdown_extensions = [mdx_circuit.CircuitExtension(configs={}),
|
|
mdx_mathjax.MathJaxExtension(configs={}),
|
|
mdx_video.VideoExtension(configs={})]
|
|
|
|
plugin_registry.register(ExtendMarkdownPlugin)
|