aboutsummaryrefslogtreecommitdiff
path: root/html-test/ref/Table.html
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'ghc-8.6' into wip/new-oceanAlec Theriault2018-11-091-3/+7
|\
| * Only run MathJax on entities with "mathjax" class (#960)Alec Theriault2018-11-051-3/+7
| | | | | | | | | | | | | | Correspondingly, we wrap all inline/diplay math in <span class="mathjax"> ... the math .... </span> This fixes #959.
* | Accept testsAlec Theriault2018-10-181-9/+9
| |
* | Update test-suite reference html pagesNuno Alexandre2018-10-181-11/+11
| |
* | html-test --acceptHerbert Valerio Riedel2018-10-181-1/+1
| |
* | Add an initial-scale property to all haddock pagesNuno Alexandre2018-10-181-0/+1
| | | | | | | | | | This solves an issue reported about the content looking incredibly small on mobile devices.
* | Update html-test reference filesNuno Alexandre2018-10-181-3/+3
| | | | | | | | | | The package name element in the package-header is now a div instead of a paragraph, and it is now above the menu ul.links instead of below.
* | Update html test reference filesNunoAlexandre2018-10-181-0/+1
|/
* Make testsuite work with haddock-1.19.0 release (#766)Alexander Biehl2018-03-021-1/+1
|
* Grid Tables (#718)Oleg Grenrus2018-02-011-0/+238
* Add table examples * Add table types and adopt simple parser Simple parser is done by Giovanni Cappellotto (@potomak) in https://github.com/haskell/haddock/pull/577 It seems to support single fine full tables, so far from full RST-grid tables, but it's good start. Table type support row- and colspans, but obviously parser is lacking. Still TODO: - Latex backend. Should we use multirow package https://ctan.org/pkg/multirow?lang=en? - Hoogle backend: ? * Implement grid-tables * Refactor table parser * Add two ill-examples * Update CHANGES.md * Basic documentation for tables * Fix documentation example