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