Skip to main content

Serve .md pages as Django views.

Project description

Django Markdown View

Serve .md pages as Django views.

This package aims to make it easy to serve .md files on Django sites.

Requirements

Tested with:

The Tested With section describes aspirational goals.

  • Python: 3.5, 3.6, 3.7, 3.8

  • Django: 2.2, 3.0

Installation

  1. Install with pip install django-markdown-view.

  2. Add 'markdown_view' to your INSTALLED_APPS settings.

    INSTALLED_APPS = [
        ...,
        'markdown_view',
        ...
    ]
  3. (OPTIONAL) Add MARKDOWN_VIEW_BASE_DIR or BASE_DIR to settings

    The dictionary of the application’s base. See Settings below

    For example, if settings are in config/settings/base.py, then:

    BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))

Usage

Views

Use one of MarkdownView, LoggedInMarkdownView, or StaffMarkdownView from markdown_view.views to serve a .md file

from markdown_view.views import StaffMarkdownView

path('readme/',
    StaffMarkdownView.as_view(file_name='my_app/README.md'),
    name="readme"),

Settings

All settings are optional. See markdown_view/constants.py for the defaults.

  • MARKDOWN_VIEW_BASE_DIR and BASE_DIR

    When present, the value is taken as a location to append to the list of dirs that Django’s django.template.utils.get_app_template_dirs will return when passed dirname=””. This is used to locate .md files in the root of the project, e.g., a README.md file. Looks for BASE_DIR if MARKDOWN_VIEW_BASE_DIR is not found.

  • MARKDOWN_VIEW_LOADERS

    A list of loaders that locate .md files. The default list includes only markdown_view.loaders.MarkdownLoader which will by default try to load .md files from root directories in INSTALLED_APPS packages much the same as Django’s django.template.loaders.app_directories.Loader looks to load from “templates”.

  • MARKDOWN_VIEW_LOADER_TEMPLATES_DIR

    The name of the directories in INSTALLED_APPS packages in which to locate .md files. Defaults to “” in order to locate .md filed in the root directories.

  • MARKDOWN_VIEW_EXTENSIONS

    The extensions to enable. These extensions are enabled be default:

    • toc:

      generates a Table of Contents. If toc is removed from extensions, then MARKDOWN_VIEW_TEMPLATE_USE_TOC must be set to False.

    • tables:

      enables tables.

    • fenced_code:

      enables code blocks. If fenced_code is removed from extensions, then MARKDOWN_VIEW_TEMPLATE_USE_HIGHLIGHT_JS, which provides the highlighting for code blocks, can be disabled.

    • markdown_view.markdown_extensions.ImageExtension:

      makes images responsive in bootstrap4.

    See https://python-markdown.github.io/extensions/ and https://github.com/Python-Markdown/markdown/wiki/Third-Party-Extensions for more extensions.

    You can create your own extensions by following https://github.com/Python-Markdown/markdown/wiki/Tutorial-1—Writing-Extensions-for-Python-Markdown

  • MARKDOWN_VIEW_TEMPLATE

    The Django template that’ll be used to render the HTML that is generated from the Markdown. Set your own template to style your pages. Context includes:

    • markdown_content:

      The HTML produced from the Markdown.

    • use_highlight_js:

      If highlight.js is enabled.

    • use_toc:

      If the table of contents should be rendered.

    • markdown_toc:

      A table of contents from the headers of the Markdown. Not set when use_toc is False.

    • page_title:

      A guess at a page title, for now it’s the first row of the TOC. Not set when use_toc is False.

  • MARKDOWN_VIEW_TEMPLATE_USE_TOC

    Whether to render the TOC. If false, in the template context, use_toc is False and markdown_toc and page_title are not present.

  • MARKDOWN_VIEW_TEMPLATE_USE_HIGHLIGHT_JS

    Whether to load and activate the highlight.js library in the template.

Experimental Settings

  • MARKDOWN_VIEW_USE_REQUEST_CONTEXT

    If the request context should be used as a base when creating the context with which to render the Markdown internally. This is because the Markdown is rendered once first in order to prepend it with {% load static %}. This is not well tested; YMMV.

  • MARKDOWN_VIEW_EXTRA_CONTEXT

    Any extra context to send to the internal render of the Markdown. Can be used to expose context to template tags embedded in the Markdown. This is not well tested; YMMV.

Implementation

At a high level, MarkdownView will:

  1. Use a template loader to locate .md given as file_name

  2. Render as a template, the contents of the .md file prepended with {{% load static %}}, into several context variables

  3. Serve the MARKDOWN_VIEW_TEMPLATE with the context variables

Authors

Wharton Computing

  • Ryan J. Sullivan

Other

Changelog

0.0.3 (2020-07-09)

  1. Correct a typo the README.rst

  2. Add ids to the sections in the template

  3. Make more settings configurable

  4. Provide settings to disable optional functionality

  5. Add settings to, and generally improve, the README.rst

  6. Changed the project description to say “views” instead of “templates”

0.0.2 (2020-07-06)

  1. Remove support for Django pre-2.2

  2. Adds missing file markdown_view/markdown_extensions.py

0.0.1 (2020-06-16)

  1. Initial release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-markdown-view-0.0.3.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

django_markdown_view-0.0.3-py2.py3-none-any.whl (10.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-markdown-view-0.0.3.tar.gz.

File metadata

  • Download URL: django-markdown-view-0.0.3.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.2

File hashes

Hashes for django-markdown-view-0.0.3.tar.gz
Algorithm Hash digest
SHA256 50eba49bc0aee63d196ef58313355cd9f9c616a1560828b44c9db80f40f95515
MD5 5ad065d14ab93d33234f6b794376c2a3
BLAKE2b-256 d6e9ec28c04b76ab41687545d68a10c2bc78c179fb244f971eb977f1c2c0dc92

See more details on using hashes here.

File details

Details for the file django_markdown_view-0.0.3-py2.py3-none-any.whl.

File metadata

  • Download URL: django_markdown_view-0.0.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 10.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.2

File hashes

Hashes for django_markdown_view-0.0.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 bd30404bb95d111cc67d1e4f1a2fcfc923a3a02ab68c87bfa421efd301ad52a2
MD5 77fa0474256a10f22ab7b9021fbfd755
BLAKE2b-256 5d0449ed84f6b3b7e4f0dbc100794c39cacf1551d8b44f3d65e427b9a8f4551e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page