diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-05-17 23:19:41 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-05-20 15:13:59 +0900 |
commit | e6c51bd535ac5d60dacff726accb084326442955 (patch) | |
tree | d3c29159a36c4458770425ec0bd881c93da740f5 /sphinx/addnodes.py | |
parent | fc5f5e3b866de37778bfeb063d7fd7f1b522195c (diff) | |
download | sphinx-git-e6c51bd535ac5d60dacff726accb084326442955.tar.gz |
refactor: Move math_reference node to sphinx.builders.latex.nodes
The node is only used in latex builder. So this makes it builder-
specific node.
Diffstat (limited to 'sphinx/addnodes.py')
-rw-r--r-- | sphinx/addnodes.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sphinx/addnodes.py b/sphinx/addnodes.py index 8e4f1ba35..331fe5225 100644 --- a/sphinx/addnodes.py +++ b/sphinx/addnodes.py @@ -240,11 +240,6 @@ class displaymath(math_block): """ -class math_reference(nodes.Inline, nodes.Referential, nodes.TextElement): - """Node for a reference for equation.""" - pass - - # other directive-level nodes class index(nodes.Invisible, nodes.Inline, nodes.TextElement): |