1 <?xml version="1.0" encoding="UTF-8"?>
7 All lines (outside program- listings and CDATA sections) just containing
8 a ' *' (blank-asterisk) are converted to paragraph breaks.
13 * The following line is ' *' (blank-asterisk).
15 * So this is considered a new paragraph.
19 <name>SECTION:test</name>
21 <description>The following line is ' *' (blank-asterisk).
23 So this is considered a new paragraph.</description>
29 ' * ' (blank-asterisk-blank) are also converted to paragraph breaks.
34 * The following line is ' * ' (blank-asterisk-blank).
36 * So this is considered a new paragraph.
40 <name>SECTION:test</name>
42 <description>The following line is ' * ' (blank-asterisk-blank).
44 So this is considered a new paragraph.</description>
50 If you want an "empty line" but not a paragraph break, change that into ' * '
51 (blank-asterisk-blank-blank). The "empty line" can be easily recognized in the
52 output as it contains a single space character.
57 * The following line is (blank-asterisk-blank-blank).
59 * So this is preceded by an empty line and is not considered a new paragraph.
63 <name>SECTION:test</name>
65 <description>The following line is (blank-asterisk-blank-blank).
67 So this is preceded by an empty line and is not considered a new paragraph.</description>
73 If you want an "empty line" but not a paragraph break, change that into ' * '
74 (blank-asterisk-blank-blank). The "empty line" can be easily recognized in the
75 output as it contains a single space character.
77 <commentblock><![CDATA[/**
81 * <title>Iterating over attributes</title>
84 * print_attributes (GIBaseInfo *info)
86 * GIAttributeIter iter = { 0, };
90 * while (g_base_info_iterate_attributes (info, &iter, &name, &value))
92 * g_print ("attribute name: %s value: %s", name, value);
100 <name>SECTION:test</name>
102 <description><![CDATA[<example>
103 <title>Iterating over attributes</title>
106 print_attributes (GIBaseInfo *info)
108 GIAttributeIter iter = { 0, };
112 while (g_base_info_iterate_attributes (info, &iter, &name, &value))
114 g_print ("attribute name: %s value: %s", name, value);
118 </example>]]></description>