File: __init__.py

package info (click to toggle)
sphinx-mdinclude 0.6.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: python: 1,242; makefile: 53; sh: 8
file content (18 lines) | stat: -rw-r--r-- 310 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""
Markdown extension for Sphinx
"""

__author__ = "Hiroyuki Takagi <miyako.dev@gmail.com>"
from .__version__ import __version__

from .render import convert, RestMarkdown
from .sphinx import setup

__all__ = [
    "convert",
    "RestMarkdown",
    "setup",
]