ZF-8862: Add and set filters for existing markups
Description
Add the ability to add and set filters for existing markups. For example:
$markup = Zend_Markup::factory('bbcode');
$filter = new Zend_Filter_StringToUpper();
$markup->setFilter($filter, 'b');
// should output "FOO&BARbaz"
echo $markup->render('[b]foo&bar[/b]baz');
Comments
No comments to display