Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2019-03-09 09:37:50 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2019-03-09 16:26:35 +0300
commitc0755bf5824d3ab2389901868c6d6d1336de7d06 (patch)
treeaded9fedbe7cba8ff6c93c9352ca4c7f6f950aa7 /sphinx/io.py
parentd9c10f40cef63b6f637809a703865b6f30aec977 (diff)
refactor CitationReferences transform
Diffstat (limited to 'sphinx/io.py')
-rw-r--r--sphinx/io.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/io.py b/sphinx/io.py
index 368f661d5..00fc2bf1a 100644
--- a/sphinx/io.py
+++ b/sphinx/io.py
@@ -20,7 +20,7 @@ from docutils.writers import UnfilteredWriter
from sphinx.deprecation import RemovedInSphinx30Warning
from sphinx.transforms import (
- ApplySourceWorkaround, ExtraTranslatableNodes, CitationReferences,
+ ApplySourceWorkaround, ExtraTranslatableNodes, SmartQuotesSkipper, CitationReferences,
DefaultSubstitutions, MoveModuleTargets, HandleCodeBlocks, SortIds, FigureAligner,
AutoNumbering, AutoIndexUpgrader, FilterSystemMessages,
UnreferencedFootnotesDetector, SphinxSmartQuotes, DoctreeReadEvent, ManpageLink
@@ -99,7 +99,7 @@ class SphinxStandaloneReader(SphinxBaseReader):
RemoveTranslatableInline, FilterSystemMessages, RefOnlyBulletListTransform,
UnreferencedFootnotesDetector, SphinxSmartQuotes, ManpageLink,
SphinxDomains, SubstitutionDefinitionsRemover, DoctreeReadEvent,
- UIDTransform]
+ UIDTransform, SmartQuotesSkipper]
def __init__(self, app, *args, **kwargs):
# type: (Sphinx, Any, Any) -> None
@@ -141,7 +141,7 @@ class SphinxI18nReader(SphinxBaseReader):
AutoNumbering, SortIds, RemoveTranslatableInline,
FilterSystemMessages, RefOnlyBulletListTransform,
UnreferencedFootnotesDetector, SphinxSmartQuotes, ManpageLink,
- SubstitutionDefinitionsRemover]
+ SubstitutionDefinitionsRemover, SmartQuotesSkipper]
def set_lineno_for_reporter(self, lineno):
# type: (int) -> None