Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 723468 | Differences between
and this patch

Collapse All | Expand All

(-)a/tests/sphinx_code_block/conf.py (-4 / +2 lines)
Lines 1-11 Link Here
1
1
2
# -*- coding: utf-8 -*-
2
# -*- coding: utf-8 -*-
3
3
4
from recommonmark.parser import CommonMarkParser
5
6
templates_path = ['_templates']
4
templates_path = ['_templates']
7
source_suffix = '.md'
5
extensions = ['recommonmark']
8
source_parsers = { '.md': CommonMarkParser }
6
source_suffix = { '.md': 'markdown' }
9
master_doc = 'index'
7
master_doc = 'index'
10
project = u'sphinxproj'
8
project = u'sphinxproj'
11
copyright = u'2015, rtfd'
9
copyright = u'2015, rtfd'
(-)a/tests/sphinx_custom_md/conf.py (-3 / +2 lines)
Lines 1-12 Link Here
1
1
2
# -*- coding: utf-8 -*-
2
# -*- coding: utf-8 -*-
3
3
4
from recommonmark.parser import CommonMarkParser
5
from recommonmark.transform import AutoStructify
4
from recommonmark.transform import AutoStructify
6
5
7
templates_path = ['_templates']
6
templates_path = ['_templates']
8
source_suffix = '.markdown'
7
extensions = ['recommonmark']
9
source_parsers = { '.markdown': CommonMarkParser }
8
source_suffix = { '.markdown': 'markdown' }
10
master_doc = 'index'
9
master_doc = 'index'
11
project = u'sphinxproj'
10
project = u'sphinxproj'
12
copyright = u'2015, rtfd'
11
copyright = u'2015, rtfd'
(-)a/tests/sphinx_generic/conf.py (-4 / +2 lines)
Lines 1-11 Link Here
1
1
2
# -*- coding: utf-8 -*-
2
# -*- coding: utf-8 -*-
3
3
4
from recommonmark.parser import CommonMarkParser
5
6
templates_path = ['_templates']
4
templates_path = ['_templates']
7
source_suffix = '.md'
5
extensions = ['recommonmark']
8
source_parsers = { '.md': CommonMarkParser }
6
source_suffix = { '.md': 'markdown' }
9
master_doc = 'index'
7
master_doc = 'index'
10
project = u'sphinxproj'
8
project = u'sphinxproj'
11
copyright = u'2015, rtfd'
9
copyright = u'2015, rtfd'
(-)a/tests/sphinx_indented_code/conf.py (-4 / +2 lines)
Lines 1-11 Link Here
1
1
2
# -*- coding: utf-8 -*-
2
# -*- coding: utf-8 -*-
3
3
4
from recommonmark.parser import CommonMarkParser
5
6
templates_path = ['_templates']
4
templates_path = ['_templates']
7
source_suffix = '.md'
5
extensions = ['recommonmark']
8
source_parsers = { '.md': CommonMarkParser }
6
source_suffix = { '.md': 'markdown' }
9
master_doc = 'index'
7
master_doc = 'index'
10
project = u'sphinxproj'
8
project = u'sphinxproj'
11
copyright = u'2015, rtfd'
9
copyright = u'2015, rtfd'
(-)a/tests/sphinx_nested_header_block/conf.py (-4 / +2 lines)
Lines 1-11 Link Here
1
1
2
# -*- coding: utf-8 -*-
2
# -*- coding: utf-8 -*-
3
3
4
from recommonmark.parser import CommonMarkParser
5
6
templates_path = ['_templates']
4
templates_path = ['_templates']
7
source_suffix = '.md'
5
extensions = ['recommonmark']
8
source_parsers = { '.md': CommonMarkParser }
6
source_suffix = { '.md': 'markdown' }
9
master_doc = 'index'
7
master_doc = 'index'
10
project = u'sphinxproj'
8
project = u'sphinxproj'
11
copyright = u'2015, rtfd'
9
copyright = u'2015, rtfd'
(-)a/tests/sphinx_xref/conf.py (-5 / +2 lines)
Lines 1-14 Link Here
1
1
2
# -*- coding: utf-8 -*-
2
# -*- coding: utf-8 -*-
3
3
4
from recommonmark.parser import CommonMarkParser
4
extensions = ['sphinx.ext.autosectionlabel', 'recommonmark']
5
6
extensions = 'sphinx.ext.autosectionlabel']
7
autosectionlabel_prefix_document = True
5
autosectionlabel_prefix_document = True
8
6
9
templates_path = ['_templates']
7
templates_path = ['_templates']
10
source_suffix = '.md'
8
source_suffix = { '.md': 'markdown' }
11
source_parsers = { '.md': CommonMarkParser }
12
master_doc = 'index'
9
master_doc = 'index'
13
project = u'sphinxproj'
10
project = u'sphinxproj'
14
copyright = u'2015, rtfd'
11
copyright = u'2015, rtfd'

Return to bug 723468