Topic: HTML5 support in htmLawed
Is there any update as to the progress on releasing a version with HTML5 support?
You are not logged in. Please login or register.
PHP Labware forum → htmLawed → HTML5 support in htmLawed
Is there any update as to the progress on releasing a version with HTML5 support?
I have a version ready and will release it by this Sunday.
Awesome to hear, thanks :)
Sorry, I didn't get enough time to complete this... but should be able to get the new version out this week.
Eager to hear. In particular I'd like support for the void element WBR, which should probably be in the "safe" category.
Any further updates?
I apologize for the continuing delay... I am giving a final touch to the documentation and performing a few tests. I promise to release the version by this weekend whatever its state (which I think is good).
@mrclay, in case your need is urgent, you can modify the current htmLawed code for support for 'wbr' as follows:
// line numbers refer to those of htmLawed.php for htmLawed version 1.1.14
// line 20, in function htmLawed; edit $e array to add 'wbr'
$e = array(..., 'wbr'=>1);
// line 147, in function hl_bal; edit $cE array to add 'wbr'
$cE = array(..., 'wbr'=>1);
// line 159, in function hl_bal; edit $eI array to add 'wbr'
$eI = array(..., 'wbr'=>1);
// line 431, in function hl_tag; edit $eE array to add 'wbr'
static $eE = array(..., 'wbr'=>1);See this post on the new htmLawed release.
PHP Labware forum → htmLawed → HTML5 support in htmLawed