Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: torchbox/wagtail-markdown
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: cheradenine/wagtail-markdown
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 7 commits
  • 10 files changed
  • 4 contributors

Commits on Oct 22, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    danihodovic Dani Hodovic
    Copy the full SHA
    6fd6679 View commit details

Commits on Oct 30, 2019

  1. Bump dependencies

    danihodovic committed Oct 30, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    danihodovic Dani Hodovic
    Copy the full SHA
    d56c289 View commit details

Commits on Jan 2, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    danihodovic Dani Hodovic
    Copy the full SHA
    d32ce7f View commit details
  2. Update README.md

    Co-Authored-By: Dan Braghis <[email protected]>
    danihodovic and zerolab authored Jan 2, 2020

    Partially verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    72f49b5 View commit details

Commits on May 12, 2020

  1. merge up to danihodovic fork

    John B committed May 12, 2020
    Copy the full SHA
    b3669bd View commit details
  2. fix dependencies for xr

    John B committed May 12, 2020
    Copy the full SHA
    f95c769 View commit details

Commits on May 13, 2020

  1. Copy the full SHA
    a4c4755 View commit details
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -22,8 +22,16 @@ extensions to make it actually useful in Wagtail:
* Inline Markdown preview using [SimpleMDE](http://nextstepwebs.github.io/simplemde-markdown-editor/)

These are implemented using the `python-markdown` extension interface.
Currently, adding new extensions isn't possible without modifying the code, but
that shouldn't be difficult to implement (patches welcome).

You can configure wagtail-markdown to use additional Markdown extensions by via the `WAGTAILMARKDOWN_EXTENSIONS` setting.
config.

For example, to enable the [Table of
Contents](https://python-markdown.github.io/extensions/toc/) and [Sane
Lists](https://python-markdown.github.io/extensions/sane_lists/) extensions:
```python
WAGTAILMARKDOWN_EXTENSIONS = ["toc", "sane_lists"]
```

### Installation
Alpha release is available on Pypi - https://pypi.org/project/wagtail-markdown/ - installable via `pip install wagtail-markdown`. It's not a production ready release.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -30,9 +30,9 @@ def get_git_revision_hash():


INSTALL_REQUIRES = [
'Markdown>=2.6,<2.7',
'bleach>=1.4.2,<2.2',
'Wagtail>=2.0',
'Markdown>=3.1',
'bleach>=3.0',
'Wagtail>=2.6',
]


6 changes: 3 additions & 3 deletions wagtailmarkdown/blocks.py
Original file line number Diff line number Diff line change
@@ -32,11 +32,11 @@ def media(self):
return forms.Media(
css={
'all': (
'wagtailmarkdown/css/simplemde.min.css',
'wagtailmarkdown/css/easymde.min.css',
)
},
js=(
'wagtailmarkdown/js/simplemde.min.js',
'wagtailmarkdown/js/simplemde.attach.js',
'wagtailmarkdown/js/easymde.min.js',
'wagtailmarkdown/js/easymde.attach.js',
)
)
7 changes: 7 additions & 0 deletions wagtailmarkdown/static/wagtailmarkdown/css/easymde.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions wagtailmarkdown/static/wagtailmarkdown/css/simplemde.min.css

This file was deleted.

Original file line number Diff line number Diff line change
@@ -10,10 +10,10 @@
*/

/*
* Used to initialize Simple MDE when Markdown blocks are used in StreamFields
* Used to initialize Easy MDE when Markdown blocks are used in StreamFields
*/
function simplemdeAttach(id) {
var mde = new SimpleMDE({
function easymdeAttach(id) {
var mde = new EasyMDE({
element: document.getElementById(id),
autofocus: false,
});
@@ -25,11 +25,11 @@ function simplemdeAttach(id) {
}

/*
* Used to initialize Simple MDE when MarkdownFields are used on a page.
* Used to initialize Easy MDE when MarkdownFields are used on a page.
*/
$(document).ready(function() {
$(".object.markdown textarea").each(function(index, elem) {
simplemdeAttach(elem.id);
easymdeAttach(elem.id);
});
});

7 changes: 7 additions & 0 deletions wagtailmarkdown/static/wagtailmarkdown/js/easymde.min.js

Large diffs are not rendered by default.

15 changes: 0 additions & 15 deletions wagtailmarkdown/static/wagtailmarkdown/js/simplemde.min.js

This file was deleted.

5 changes: 5 additions & 0 deletions wagtailmarkdown/utils.py
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@
#
import warnings

from django.conf import settings
from django.utils.encoding import smart_text
from django.utils.safestring import mark_safe

@@ -143,6 +144,10 @@ def _get_markdown_kwargs():
'doc:': 'wagtailmarkdown.mdx.linkers.document',
})
]

if hasattr(settings, 'WAGTAILMARKDOWN_EXTENSIONS'):
markdown_kwargs['extensions'] += settings.WAGTAILMARKDOWN_EXTENSIONS

markdown_kwargs['extension_configs'] = {
'codehilite': [
('guess_lang', False),
8 changes: 4 additions & 4 deletions wagtailmarkdown/widgets.py
Original file line number Diff line number Diff line change
@@ -17,18 +17,18 @@ def __init__(self, **kwargs):
super(MarkdownTextarea, self).__init__(**kwargs)

def render_js_init(self, id_, name, value):
return 'simplemdeAttach("{0}");'.format(id_)
return 'easymdeAttach("{0}");'.format(id_)

@property
def media(self):
return forms.Media(
css={
'all': (
'wagtailmarkdown/css/simplemde.min.css',
'wagtailmarkdown/css/easymde.min.css',
)
},
js=(
'wagtailmarkdown/js/simplemde.min.js',
'wagtailmarkdown/js/simplemde.attach.js',
'wagtailmarkdown/js/easymde.min.js',
'wagtailmarkdown/js/easymde.attach.js',
)
)