From: Jan Gerber Date: Wed, 2 May 2012 12:49:35 +0000 (+0200) Subject: Add new-inline-tags to tidy.conf X-Git-Tag: 1.31.0-rc.0~23686^2 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=9464788f0fdc707f2d17286abdb87cc5c53130c1;p=lhc%2Fweb%2Fwiklou.git Add new-inline-tags to tidy.conf by default tidy does not support html5 tags. TimedMediaHandler outputs video, audio and source To make TimedMediaHandler work with $wgUseTidy = true, those tags need to be allowed in tidy.conf: new-inline-tags: video,audio,source,track Fixes #30541 Change-Id: I528c9521e9277be308a6a75cc3fc57c83905b5df --- diff --git a/includes/tidy.conf b/includes/tidy.conf index 09412f0517..479083eca3 100644 --- a/includes/tidy.conf +++ b/includes/tidy.conf @@ -16,3 +16,4 @@ quiet: yes quote-nbsp: yes fix-backslash: no fix-uri: no +new-inline-tags: video,audio,source,track