Is it possible to render a <bridgehead> element indented as normal
paragraph?
For example, I have the docbook piece
<sect3>
<title>TOOLINFO structure</title>
<bridgehead>Syntax</bridgehead>
<programlisting language='c'><![CDATA[struct TOOLINFO
{
UINT cbSize;
UINT uFlags;
HWND hwnd;
UINT_PTR uId;
RECT rect;
HINSTANCE hinst;
LPTSTR lpszText;
LPARAM lParam;
};]]></programlisting>
<bridgehead>Members</bridgehead>
...
</sect3>
In the PDF rendered, it showed:
TOOL Structure -> sect3 font,
no indent
Syntax ->
bridgehead, indented
struct TOOLINFO
{
UINT cbSize;
UINT uFlags;
HWND hwnd;
UINT_PTR uId;
RECT rect;
HINSTANCE hinst;
LPTSTR lpszText;
LPARAM lParam;
};
I want the bridgehead blocks have the same indent as normal paragraphs.
Is it possible? Thanx.