Мне нравится иметь один документ docbook xml, содержащий контент для нескольких целевых аудиторий.Есть ли фильтр, который позволяет мне отфильтровывать материал, необходимый только для «продвинутых» пользователей?
Атрибут уровня придуман мной, чтобы выразить то, что я имею в виду.
<?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>