so I was trying to add the RDFA doctype into zend by typing the following into my layout.phtml...
$doctypeHelper = new Zend_View_Helper_Doctype();
$doctypeHelper->doctype('XHTML1_RDFA');
so that I will be able to use the headMeta->appendProperty() function....but then it returned this error:
Fatal error: Uncaught exception 'Zend_View_Exception' with message 'The specified doctype is malformed'
how do I resolve this?