From 0db5988b141b7265ce1d87a1df79590066bda328 Mon Sep 17 00:00:00 2001 From: milde Date: Mon, 16 Feb 2015 22:43:37 +0000 Subject: [PATCH] Fix mapping of "\\\\circ" macro to Unicode character. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7790 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- docutils/utils/math/math2html.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docutils/utils/math/math2html.py b/docutils/utils/math/math2html.py index 2d3149e9a..4447ab334 100644 --- a/docutils/utils/math/math2html.py +++ b/docutils/utils/math/math2html.py @@ -14,7 +14,7 @@ # .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause # Based on eLyXer: convert LyX source files to HTML output. -# http://elyxer.nongnu.org/ +# http://alexfernandez.github.io/elyxer/ # --end-- # Alex 20101110 @@ -410,7 +410,7 @@ class FormulaConfig(object): u'\\bowtie':u'⋈', u'\\box':u'▫', u'\\boxdot':u'⊡', u'\\bullet':u'•', u'\\bumpeq':u'≏', u'\\cancer':u'♋', u'\\cap':u'∩', u'\\capricornus':u'♑', u'\\cdot':u'⋅', u'\\cdots':u'⋯', u'\\centerdot':u'∙', - u'\\checkmark':u'✓', u'\\chi':u'χ', u'\\circ':u'○', u'\\circeq':u'≗', + u'\\checkmark':u'✓', u'\\chi':u'χ', u'\\circ':u'∘', u'\\circeq':u'≗', u'\\circledR':u'®', u'\\circledast':u'⊛', u'\\circledcirc':u'⊚', u'\\circleddash':u'⊝', u'\\clubsuit':u'♣', u'\\coloneqq':u'≔', u'\\complement':u'∁', u'\\cong':u'≅', u'\\coprod':u'∐', -- 2.11.4.GIT