Open goutomroy opened 3 years ago
I followed following link to make my editor and preview side by side.
https://neutronx.github.io/django-markdownx/customization/#customization
In settings.py
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?
This solved the issue.
@goutomroy Thanks for this. Do you know if people here take PRs for the docs? They are a few broken links too.
I followed following link to make my editor and preview side by side.
https://neutronx.github.io/django-markdownx/customization/#customization
In
settings.py