OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [docbook-apps] Element title encountered in qandaentry


Sorry, thats the right example


	<?xml version="1.0" encoding="utf-8"?>
	<topic  xmlns='http://docbook.org/ns/docbook'
	        xmlns:xlink="http://www.w3.org/1999/xlink";
	        version="5.0">

	  <title>Title allowed in qandaentry.</title>

	  <qandaset defaultlabel='qanda'>

	  <qandaentry><title>This title is the first child of an qandaentry element</title>
	    <question><para>Q</para></question>
	    <answer><para>A</para></answer>
	  </qandaentry>

	  <qandaentry><title>second title</title>
	    <question><para>Q2</para></question>
	    <answer><para>A2</para></answer>
	  </qandaentry>

	  </qandaset>

	</topic>



and here the browseroutput:



	Title allowed in qandaentry.

	Q: This title is the first child of an qandaentry element
	Q: second title

	This title is the first child of an qandaentry element
	second title
	Q: Q
	A: A
	Q: Q2
	A: A2



and that looks wrong to me


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]