(bug 7899) Added \hline and \vline to the list of allowed TeX commands
authorJens Frank <jeluf@users.mediawiki.org>
Sun, 27 May 2007 19:52:29 +0000 (19:52 +0000)
committerJens Frank <jeluf@users.mediawiki.org>
Sun, 27 May 2007 19:52:29 +0000 (19:52 +0000)
RELEASE-NOTES
math/texutil.ml

index 460b0b6..cb5c0df 100644 (file)
@@ -87,6 +87,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   entries.
 * (bug 7432) Change language name for Aromanian (roa-rup)
 * (bug 908) Unexistent special pages now generate a red link.
+* (bug 7899) Added \hline and \vline to the list of allowed TeX commands
 
 == MediaWiki API changes since 1.10 ==
 
index f9ebb25..3e4ee4d 100644 (file)
@@ -466,6 +466,8 @@ let find = function
     | "\\left"             -> LEFT
     | "\\right"            -> RIGHT
     | "\\hat"              -> FUN_AR1 "\\hat "
+    | "\\hline"            -> LITERAL (TEX_ONLY "\\hline ")
+    | "\\vline"            -> LITERAL (TEX_ONLY "\\vline ")
     | "\\widehat"          -> LITERAL (TEX_ONLY "\\widehat ")
     | "\\overline"         -> LITERAL (TEX_ONLY "\\overline ")
     | "\\overbrace"        -> LITERAL (TEX_ONLY "\\overbrace ")