mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge wiht 'stable'
This commit is contained in:
commit
358a13ee72
@ -17,7 +17,7 @@ import inspect
|
|||||||
import traceback
|
import traceback
|
||||||
from types import FunctionType, BuiltinFunctionType, MethodType
|
from types import FunctionType, BuiltinFunctionType, MethodType
|
||||||
|
|
||||||
from six import iterkeys, iteritems, itervalues, text_type, class_types, \
|
from six import PY2, iterkeys, iteritems, itervalues, text_type, class_types, \
|
||||||
string_types, StringIO
|
string_types, StringIO
|
||||||
from docutils import nodes
|
from docutils import nodes
|
||||||
from docutils.utils import assemble_option_dict
|
from docutils.utils import assemble_option_dict
|
||||||
@ -532,6 +532,8 @@ class Documenter(object):
|
|||||||
else:
|
else:
|
||||||
errmsg += '; the following exception was raised:\n%s' % \
|
errmsg += '; the following exception was raised:\n%s' % \
|
||||||
traceback.format_exc()
|
traceback.format_exc()
|
||||||
|
if PY2:
|
||||||
|
errmsg = errmsg.decode('utf-8')
|
||||||
dbg(errmsg)
|
dbg(errmsg)
|
||||||
self.directive.warn(errmsg)
|
self.directive.warn(errmsg)
|
||||||
self.env.note_reread()
|
self.env.note_reread()
|
||||||
|
@ -507,3 +507,13 @@ div.code-block-caption {
|
|||||||
padding: 2px 5px;
|
padding: 2px 5px;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* -- math display ---------------------------------------------------------- */
|
||||||
|
|
||||||
|
div.body div.math p {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.eqno {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
@ -369,3 +369,8 @@ div.viewcode-block:target {
|
|||||||
margin: -1px -10px;
|
margin: -1px -10px;
|
||||||
padding: 0 12px;
|
padding: 0 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* math display */
|
||||||
|
div.math p {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
@ -471,3 +471,13 @@ div.figure p.caption span.caption-number {
|
|||||||
|
|
||||||
div.figure p.caption span.caption-text {
|
div.figure p.caption span.caption-text {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* math display */
|
||||||
|
|
||||||
|
div.math p {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.eqno {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
@ -736,3 +736,13 @@ div.figure p.caption span.caption-number {
|
|||||||
|
|
||||||
div.figure p.caption span.caption-text {
|
div.figure p.caption span.caption-text {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* :::: MATH DISPLAY :::: */
|
||||||
|
|
||||||
|
div.body div.math p {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.eqno {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user