summaryrefslogtreecommitdiff
path: root/sphinx/io.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-15 01:14:23 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-15 01:14:23 +0900
commitfcc876f35c08aa98e3eccf8591e963c1787356fb (patch)
treed75bdcf348c691491b4e819e0fe99f82f4fdbc5f /sphinx/io.py
parent975cde44cc58ac0944cac4e82df2cc1c8058c90e (diff)
parentdc3d03da1bb826e822f90f502d2b7aca6a41ef6f (diff)
downloadsphinx-git-fcc876f35c08aa98e3eccf8591e963c1787356fb.tar.gz
Merge branch 'master' into refactor_smartquotes2
Diffstat (limited to 'sphinx/io.py')
-rw-r--r--sphinx/io.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/sphinx/io.py b/sphinx/io.py
index 39d653a19..6943a78d0 100644
--- a/sphinx/io.py
+++ b/sphinx/io.py
@@ -24,7 +24,7 @@ from sphinx.transforms import (
ApplySourceWorkaround, ExtraTranslatableNodes, CitationReferences,
DefaultSubstitutions, MoveModuleTargets, HandleCodeBlocks, SortIds,
AutoNumbering, AutoIndexUpgrader, FilterSystemMessages,
- UnreferencedFootnotesDetector, SphinxSmartQuotes
+ UnreferencedFootnotesDetector, SphinxSmartQuotes, ManpageLink
)
from sphinx.transforms.compact_bullet_list import RefOnlyBulletListTransform
from sphinx.transforms.i18n import (
@@ -94,6 +94,7 @@ class SphinxStandaloneReader(SphinxBaseReader):
HandleCodeBlocks, AutoNumbering, AutoIndexUpgrader, SortIds,
RemoveTranslatableInline, PreserveTranslatableMessages, FilterSystemMessages,
RefOnlyBulletListTransform, UnreferencedFootnotesDetector, SphinxSmartQuotes,
+ ManpageLink
] # type: List[Transform]
def __init__(self, app, *args, **kwargs):
@@ -116,7 +117,7 @@ class SphinxI18nReader(SphinxBaseReader):
DefaultSubstitutions, MoveModuleTargets, HandleCodeBlocks,
AutoNumbering, SortIds, RemoveTranslatableInline,
FilterSystemMessages, RefOnlyBulletListTransform,
- UnreferencedFootnotesDetector]
+ UnreferencedFootnotesDetector, ManpageLink]
def set_lineno_for_reporter(self, lineno):
# type: (int) -> None