sgml-content を解析し、 などのユーザー定義タグを変換するプロジェクト用のテンプレート エンジンが必要です<ext:grid />
。ほとんどの場合、input-content は有効です。一般的な問題は、リンク ジェネレーターです。私の解析問題の主な原因は、&
代わりにリンクジェネレーターが生成します。&
そのジェネレーターの出力は、リンクに . の&
代わりに&
.
DOMDocument、SimpleXML、xml_parser を試しました。それらはすべてエンティティの問題で終了します。何か案は?私が望むのは、この「問題」がパーサーによって単純に無視されることだけです。
テストテンプレートはどこにありますか:
<template xmlns:grid="templates/grid" xmlns:std="templates/std">
<std:header text="Overview" type="h1" />
<grid:base width="100%">
<grid:columns>
<grid:body>
<?php foreach($products as $product): /* @var $product Dfm_Shop_Model_Product */ ?>
<grid:row selectable="1">
<grid:cell>
<div><?php echo $this->esc($product->getTitle()) ?></div>
</grid:cell>
<grid:cell>
<a href="<?php env()->http()->to(array('controller' => 'Dfm_Shop_Controller_Products', 'method' => 'showEdit')) ?>"><std:img src="icons/pencil.png" hint="Edit" /></a>
</grid:cell>
</grid:row>
<?php endforeach ?>
</grid:body>
</grid:base>
</template>