Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -145,6 +145,7 @@ |
146 | 146 | * (bug 18408) All required permissions for uploading (upload, edit, create) |
147 | 147 | are now checked when loading Special:Upload. Toolbar link for Special:Upload |
148 | 148 | is no longer shown if the user does not have the required permissions. |
| 149 | +* (Bug 23397) texvc in html mode renders \sim as ˜ not ∼ |
149 | 150 | |
150 | 151 | === API changes in 1.17 === |
151 | 152 | * (bug 22738) Allow filtering by action type on query=logevent |
Index: trunk/phase3/math/texutil.ml |
— | — | @@ -119,7 +119,7 @@ |
120 | 120 | | "\\Rho" -> (tex_use_ams (); LITERAL (HTMLABLEC (FONT_UF, |
121 | 121 | "\\mathrm{P}", "Ρ"))) |
122 | 122 | | "\\varrho" -> LITERAL (TEX_ONLY "\\varrho ") |
123 | | - | "\\sim" -> LITERAL (HTMLABLEC (FONT_UF, "\\sim ", "˜")) |
| 123 | + | "\\sim" -> LITERAL (HTMLABLEC (FONT_UF, "\\sim ", "∼")) |
124 | 124 | | "\\sigma" -> LITERAL (HTMLABLEC (FONT_UF, "\\sigma ", "σ")) |
125 | 125 | | "\\Sigma" -> LITERAL (HTMLABLEC (FONT_UF, "\\Sigma ", "Σ")) |
126 | 126 | | "\\varsigma" -> LITERAL (TEX_ONLY "\\varsigma ") |