mirror of
https://github.com/vale981/recommonmark
synced 2025-03-06 10:31:37 -05:00

This was already dealing with a rewrite due to the spec change on CommonMark, so I took the opportunity to modernize the code and clean things up as well. * Updates to support CommonMark==0.7.3 * Reworks pattern for handling CommonMark nodes, mimic docutils visit/depart pattern * Drops SectionHandler class, as it was only used in one place. Merge into the parser class, where it is used * Drops requirements file for setup.py config, as this is a package requirements is superfluous * Adds a number of more detailed test cases * Adds test runner for 3.5, 3.6 * Updates strictness on prospector, cleans up linting errors and docstring problems
22 lines
513 B
Python
22 lines
513 B
Python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from recommonmark.parser import CommonMarkParser
|
|
|
|
templates_path = ['_templates']
|
|
source_suffix = '.md'
|
|
source_parsers = { '.md': CommonMarkParser }
|
|
master_doc = 'index'
|
|
project = u'sphinxproj'
|
|
copyright = u'2015, rtfd'
|
|
author = u'rtfd'
|
|
version = '0.1'
|
|
release = '0.1'
|
|
highlight_language = 'python'
|
|
language = None
|
|
exclude_patterns = ['_build']
|
|
pygments_style = 'sphinx'
|
|
todo_include_todos = False
|
|
html_theme = 'alabaster'
|
|
html_static_path = ['_static']
|
|
htmlhelp_basename = 'sphinxproj'
|