|  | Commit message (Collapse) | Author | Age | Files | Lines | 
|---|
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| | * Update parsing to strip leading & trailing whitespace from table cells
* Update fixture data to disallow whitespaces at both ends in table cells
* Add test case for whitespaces stripped from both ends of table cells
* Update table reference test data for html tests | 
| |\ |  | 
| | | |  | 
| | | |  | 
| |/  
|   
|   
|   
|   
|   
|   
|   
|   
|   
| | This means that `html-test`, `latex-test`, `hoogle-test`, and
`hypsrc-test` now only depend on GHC boot libs. So we should
now be able to build and run these as part of GHC's testsuite. \o/
The reference output has changed very slightly, in three ways:
  * we don't convert quotes back into `"` as the `xml` lib did
  * we don't add extra ` ` as the `xml` lib did
  * we now remove the entire footer `div` (instead of just emptying it) | 
| |\ |  | 
| | | 
| | 
| | 
| | 
| | 
| | 
| | | Correspondingly, we wrap all inline/diplay math in
    <span class="mathjax"> ... the math .... </span>
This fixes #959. | 
| | | |  | 
| | | |  | 
| | | |  | 
| | | 
| | 
| | 
| | 
| | | This solves an issue reported about the content looking
incredibly small on mobile devices. | 
| | | 
| | 
| | 
| | 
| | | 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. | 
| |/ |  | 
| | |  | 
|  | * 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 |