Re: Very minor feature suggestion - Mailing list pgsql-hackers

From Peter Eisentraut
Subject Re: Very minor feature suggestion
Date
Msg-id 1350856935.17407.10.camel@vanquo.pezone.net
Whole thread Raw
In response to Very minor feature suggestion  ("Murphy, Kevin" <MURPHYKE@email.chop.edu>)
Responses Re: Very minor feature suggestion  ("Murphy, Kevin" <MURPHYKE@email.chop.edu>)
List pgsql-hackers
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?





pgsql-hackers by date:

Previous
From: Andrew Dunstan
Date:
Subject: to_char timezone
Next
From: "Kevin Grittner"
Date:
Subject: Re: Bugs in CREATE/DROP INDEX CONCURRENTLY