On Thu, 2012-10-18 at 16:31 +0000, Murphy, Kevin wrote:
> It might be nice for psql to have a 'htmlcaption' boolean pset option that 
> would wrap the provided title/caption, if any, in a caption tag in the HTML 
> report output, when using html format.

I'm not following.  It does do that already:

=> \H
Output format is html.
=> \C 'Some Title'
Title is "Some Title".
=> select 1;
<table border="1">
  <caption>Some Title</caption>
  <tr>
    <th align="center">?column?</th>
  </tr>
  <tr valign="top">
    <td align="right">1</td>
  </tr>
</table>
<p>(1 row)<br />
</p>

What do you wish to change?




-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to