我喜歡有一個docbook xml文檔,其中包含多個目標受衆的內容。是否有一個過濾器可以讓我過濾掉「高級」用戶只需要的東西?針對不同目標受衆的Docbook發佈
我發明了level屬性來表達我的想法。
<?xml version="1.0"?>
<book>
<title lang="en">Documentation</title>
<chapter id="introduction" level="advanced">
<title>Introduction for advanced users</title>
</chapter>
<chapter id="introduction" level="basic">
<title>Introduction for basic users</title>
</chapter>
<chapter id="ch1">
<para level="basic">Just press the button</para>
<para level="advanced">
Go to preferences to set your
needs and then start the process
by pressing the button.
</para>
</chapter>
</book>
非常感謝。我無法想象那個docbook沒有這樣的東西。 – schoetbi 2010-08-27 20:14:41