From: <var...@us...> - 2014-10-13 13:14:42
|
Revision: 9251 http://sourceforge.net/p/phpwiki/code/9251 Author: vargenau Date: 2014-10-13 13:14:33 +0000 (Mon, 13 Oct 2014) Log Message: ----------- Use lower case Modified Paths: -------------- trunk/lib/WysiwygEdit.php Modified: trunk/lib/WysiwygEdit.php =================================================================== --- trunk/lib/WysiwygEdit.php 2014-10-13 12:59:27 UTC (rev 9250) +++ trunk/lib/WysiwygEdit.php 2014-10-13 13:14:33 UTC (rev 9251) @@ -51,7 +51,7 @@ /** * FIXME: Handler to convert the HTML formatting back to wiki formatting. * Derived from InlineParser, but returning wiki text instead of HtmlElement objects. - * '<b>text<b>' => '<SPAN style="FONT-WEIGHT: bold">text</SPAN>' => '*text*' + * '<b>text<b>' => '<span style="font-weight: bold">text</span>' => '*text*' * * TODO: Switch over to HtmlParser */ @@ -109,10 +109,10 @@ } } -//'<SPAN style="FONT-WEIGHT: bold">text</SPAN>' => '*text*' +//'<span style="font-weight: bold">text</span>' => '*text*' class Markup_html_spanbold extends BalancedMarkup { - public $_start_regexp = "<(?:span|SPAN) style=\"FONT-WEIGHT: bold\">"; + public $_start_regexp = "<(?:span|SPAN) style=\"font-weight: bold\">"; function getEndRegexp($match) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |