Commit c73894c1 authored by Rich Walker's avatar Rich Walker Committed by Linus Torvalds

[PATCH] DocBook: use <informalexample> for examples

Signed-off-by: default avatarMartin Waitz <tali@admingilde.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 67be2dd1
...@@ -553,15 +553,20 @@ sub output_section_xml(%) { ...@@ -553,15 +553,20 @@ sub output_section_xml(%) {
# print out each section # print out each section
$lineprefix=" "; $lineprefix=" ";
foreach $section (@{$args{'sectionlist'}}) { foreach $section (@{$args{'sectionlist'}}) {
print "<refsect1>\n <title>$section</title>\n <para>\n"; print "<refsect1>\n";
print "<title>$section</title>\n";
if ($section =~ m/EXAMPLE/i) { if ($section =~ m/EXAMPLE/i) {
print "<example><para>\n"; print "<informalexample><programlisting>\n";
} else {
print "<para>\n";
} }
output_highlight($args{'sections'}{$section}); output_highlight($args{'sections'}{$section});
if ($section =~ m/EXAMPLE/i) { if ($section =~ m/EXAMPLE/i) {
print "</para></example>\n"; print "</programlisting></informalexample>\n";
} else {
print "</para>\n";
} }
print " </para>\n</refsect1>\n"; print "</refsect1>\n";
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment