Skip to content

Commit

Permalink
Fix issue #36: error with °C
Browse files Browse the repository at this point in the history
  • Loading branch information
calixteman committed Mar 31, 2018
1 parent 99b96ec commit 745ff2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -1,4 +1,6 @@
jlatexmath (1.0.7)
* Fix °C

* Fix deformed characters in SVG output by changing font scaling

jlatexmath (1.0.6)
Expand Down
Expand Up @@ -484,7 +484,7 @@ else if (unparsedContents.contains(com)) {
pos = spos;
break;
case DEGRE :
parseString.replace(pos, pos + 1, "^\\circ");
parseString.replace(pos, pos + 1, "^{\\circ}");
len = parseString.length();
pos++;
break;
Expand Down

0 comments on commit 745ff2e

Please sign in to comment.