2

カスタムタグをページに挿入しようとしています

これはうまくいくはずですか?

<after css:content-children="#viewlet-below-content-body">
   <a href="@@historyview">History</a>
</after>

replace のみがカスタムタグを挿入/置換できるようです

<replace css:content-children="#viewlet-below-content-body">
   <a href="@@historyview">History</a>
</replace>
4

2 に答える 2

2

content/content-children のみの before/after ルールは、Diazo ではサポートされていません。ドロップまたは置換のみ可能です。たぶん、将来のバージョンで。

于 2012-04-21T15:11:55.883 に答える
1

独自のタグをテーマに追加するのはどうですか (子もコピー/置換します):

<append css:theme="#theme-id-for-viewlet-below-content-body">
   <a href="@@historyview">History</a>
</append>
于 2012-04-22T17:28:29.697 に答える