Commit b4039fe8 by Rocky Duan

Merge branch 'feature/bk_forum_int' of github.com:MITx/mitx into feature/bk_forum_int

Conflicts:
	requirements.txt
parents d5c2b04c c7d2e252
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
from django.core.urlresolvers import reverse_lazy from django.core.urlresolvers import reverse_lazy
from wiki.core import plugins_registry, baseplugin from wiki.core.plugins.base import BasePlugin
import wiki from wiki.core.plugins import registry as plugin_registry
from course_wiki.plugins.markdownedx import mdx_circuit, mdx_wikipath, mdx_mathjax, mdx_video from course_wiki.plugins.markdownedx import mdx_circuit, mdx_wikipath, mdx_mathjax, mdx_video
class ExtendMarkdownPlugin(baseplugin.BasePlugin): class ExtendMarkdownPlugin(BasePlugin):
""" """
This plugin simply loads all of the markdown extensions we use in edX. This plugin simply loads all of the markdown extensions we use in edX.
""" """
...@@ -20,5 +20,5 @@ class ExtendMarkdownPlugin(baseplugin.BasePlugin): ...@@ -20,5 +20,5 @@ class ExtendMarkdownPlugin(baseplugin.BasePlugin):
mdx_mathjax.MathJaxExtension(configs={}) , mdx_mathjax.MathJaxExtension(configs={}) ,
mdx_video.VideoExtension(configs={})] mdx_video.VideoExtension(configs={})]
plugins_registry.register(ExtendMarkdownPlugin) plugin_registry.register(ExtendMarkdownPlugin)
This source diff could not be displayed because it is too large. You can view the blob instead.
body {
margin: 0;
padding: 0; }
.wrapper, .subpage, section.copyright, section.tos, section.privacy-policy, section.honor-code, header.announcement div, section.index-content, footer {
margin: 0;
overflow: hidden; }
div#enroll form {
display: none; }
...@@ -44,6 +44,6 @@ django-ses ...@@ -44,6 +44,6 @@ django-ses
django-storages django-storages
django-threaded-multihost django-threaded-multihost
django-sekizai<0.7 django-sekizai<0.7
git+git://github.com/benjaoming/django-wiki.git@97f8413 -e git://github.com/benjaoming/django-wiki.git@c145596#egg=django-wiki
git+git://github.com/dementrock/pystache_custom.git -e git://github.com/dementrock/pystache_custom.git#egg=pystache_custom
-r repo-requirements.txt -r repo-requirements.txt
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment