diff --git a/sphinx/ext/pngmath.py b/sphinx/ext/pngmath.py index aa0d0c2e6..74f823ac7 100644 --- a/sphinx/ext/pngmath.py +++ b/sphinx/ext/pngmath.py @@ -177,8 +177,29 @@ def cleanup_tempdir(app, exc): except Exception: pass +def _html_error(latex, message): + html = """ +
+""" % (latex, message) + print "WARNING:", message + return html + def html_visit_math(self, node): - fname, depth = render_math(self, '$'+node['latex']+'$') + try: + fname, depth = render_math(self, '$'+node['latex']+'$') + except MathExtError, exc: + self.body.append(_html_error(node['latex'], exc)) + raise nodes.SkipNode self.body.append('') if node['number']: