summaryrefslogtreecommitdiffstats
path: root/tbl_html.c
Commit message (Expand)AuthorAgeFilesLines
* If the last data row of a tbl(7) contains nothing but a horizontal line,Ingo Schwarze2022-04-231-2/+4
* support for hunting memory leaks;Ingo Schwarze2022-04-141-1/+4
* According to the tbl(7) manual, if a data cell contains only theIngo Schwarze2022-01-121-2/+4
* In HTML output, in cells with an "n" (number) layout, pad numbersIngo Schwarze2021-09-091-0/+24
* If the layout or data of an individual cell in a tbl(7) containsIngo Schwarze2021-09-091-1/+6
* Support two-character font names (BI, CW, CR, CB, CI)Ingo Schwarze2021-08-101-4/+1
* Implement the layout specification "a" (left justify with 1em indentation)Ingo Schwarze2021-05-161-0/+2
* implement the tbl(7) layout modifiers "b" (bold) and "i" (italic)Ingo Schwarze2021-05-161-2/+10
* The header file "html.h" uses enum roff_tok,Ingo Schwarze2019-03-171-0/+1
* Finally, represent the man(7) .PP and .HP macros by the naturalIngo Schwarze2019-01-061-0/+1
* Yet another round of improvements to manual font selection.Ingo Schwarze2018-12-161-0/+1
* Cleanup, no functional change:Ingo Schwarze2018-12-121-1/+1
* Implement tbl(7) lines in -T html output,Ingo Schwarze2018-11-261-67/+123
* Simplify writing of tbl(7) cells by using the new feature of passingIngo Schwarze2018-11-261-16/+4
* Let cells containing nothing but \^ extend the cell above.Ingo Schwarze2018-11-251-6/+11
* In tbl(7) -T html output,Ingo Schwarze2018-11-251-16/+39
* Implement horizontal and vertical alignment of tbl(7) cell contentIngo Schwarze2018-11-241-5/+35
* Do not write <colgroup> elements. Their only purpose is to enforceIngo Schwarze2018-06-251-9/+0
* Ignore explicitly specified negative column widths rather thanIngo Schwarze2017-07-311-0/+3
* fix column width calculation for text block cellsIngo Schwarze2017-06-121-1/+1
* Implement w layout specifier (minimum column width).Ingo Schwarze2017-06-081-2/+29
* Improve <table> syntax:Ingo Schwarze2017-02-051-2/+3
* Simplify the usage of print_otag() by making it accept a variableIngo Schwarze2017-01-171-21/+9
* To make the code more readable, delete 283 /* FALLTHROUGH */ commentsIngo Schwarze2015-10-121-1/+0
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-2/+3
* Delete the redundant tbl span flags, just inspect the actual dataIngo Schwarze2015-01-301-2/+2
* Abolish struct tbl_head and replace it by an "int col" member inIngo Schwarze2015-01-301-7/+7
* Auditing the tbl(7) code for more NULL pointer accesses, i came outIngo Schwarze2015-01-301-6/+6
* Rudimentary implementation of the e, x, and z table layout modifiersIngo Schwarze2014-10-141-1/+1
* Get rid of HAVE_CONFIG_H, it is always defined; idea from libnbcompat.Ingo Schwarze2014-08-101-2/+2
* KNF: case (FOO): -> case FOO:, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze2014-04-201-5/+4
* Do not handle vertical lines as additional tbl(7) columns,Ingo Schwarze2012-05-271-13/+5
* forgotten Copyright bumps; no code changeIngo Schwarze2011-09-181-1/+1
* Fix copyright email.Kristaps Dzonsons2011-07-171-1/+1
* Change how -Thtml behaves with tables: use multiple rows, with widthsKristaps Dzonsons2011-01-131-44/+61
* Add support for "^" vertical spanners. Unlike GNU tbl, raiseKristaps Dzonsons2011-01-111-3/+11
* Restructured tbl_html() function so that we always clean up our columns.Kristaps Dzonsons2011-01-061-39/+42
* Make -T[x]html for tables structure cells with a width. I don'tKristaps Dzonsons2011-01-061-1/+48
* Give tables an HTML class.Kristaps Dzonsons2011-01-051-2/+5
* Support `T{' and `T}' data blocks. When a standalone `T{' isKristaps Dzonsons2011-01-041-1/+2
* Add skeleton for -T[x]html tbl stuff. Also start to put in some bits aboutKristaps Dzonsons2011-01-041-0/+72