Index: trunk/phase3/math/lexer.mll |
— | — | @@ -69,6 +69,7 @@ |
70 | 70 | | "\\#" { LITERAL (HTMLABLE (FONT_UFH,"\\#","#")) } |
71 | 71 | | "\\%" { LITERAL (HTMLABLE (FONT_UFH,"\\%","%")) } |
72 | 72 | | "\\$" { LITERAL (HTMLABLE (FONT_UFH,"\\$","$")) } |
| 73 | + | "\\&" { LITERAL (HTMLABLEC (FONT_RM,"\\&","&")) } |
73 | 74 | | "&" { NEXT_CELL } |
74 | 75 | | "\\\\" { NEXT_ROW } |
75 | 76 | | "\\begin{matrix}" { Texutil.tex_use_ams(); BEGIN__MATRIX } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -87,6 +87,7 @@ |
88 | 88 | * (bug 4597) Provide support in Special:Contributions to show only "current" |
89 | 89 | contributions |
90 | 90 | * (bug 17857) {{anchorencode}} acts more like how the parser creates section ids. |
| 91 | +* (bug 21477) \& can now be used in <math> |
91 | 92 | |
92 | 93 | === Bug fixes in 1.17 === |
93 | 94 | * (bug 17560) Half-broken deletion moved image files to deletion archive |