django-markdownx icon indicating copy to clipboard operation
django-markdownx copied to clipboard

Own template customization not working

Open goutomroy opened this issue 5 years ago • 2 comments

I followed following link to make my editor and preview side by side.

https://neutronx.github.io/django-markdownx/customization/#customization

In settings.py

    {
        "BACKEND": "django.template.backends.django.DjangoTemplates",
        "DIRS": [
            os.path.join(BASE_DIR, 'templates/'),
        ],
        "APP_DIRS": True,
        "OPTIONS": {
            "context_processors": [
                "django.template.context_processors.debug",
                "django.template.context_processors.request",
                "django.contrib.auth.context_processors.auth",
                "django.contrib.messages.context_processors.messages",
            ],
        },
    },
]```


but still preview shows under editor.

Any help?

goutomroy avatar Dec 12 '20 17:12 goutomroy

This solved the issue.

goutomroy avatar Dec 13 '20 02:12 goutomroy

@goutomroy Thanks for this. Do you know if people here take PRs for the docs? They are a few broken links too.

jagaudin avatar Jan 14 '21 16:01 jagaudin