aboutsummaryrefslogtreecommitdiff
path: root/html-test/ref/Nesting.html
Commit message (Collapse)AuthorAgeFilesLines
* html-test: Always set languageJoachim Breitner2021-02-221-0/+6
| | | | | | | | | | from ghc-9.2 on, the “default” langauge of GHC is expected to change more wildly. To prepare for that (and unblock https://gitlab.haskell.org/ghc/ghc/-/merge_requests/4853), this sets the language for all the test files to `Haskell2010`. This should insolate this test suite against changes to the default. Cherry-picked from https://github.com/haskell/haddock/pull/1341
* Merge branch 'ghc-8.8' into ghc-8.10Alec Theriault2020-03-201-1/+1
|\
| * Rename 'NewOcean' theme to 'Linuwial'Alec Theriault2018-11-111-2/+2
| |
* | Update test output for introduction of Safe-InferredBen Gamari2019-06-071-1/+1
| |
* | Removes `haddock-test`s dependency on `xml`/`xhtml` (#1027)Alec Theriault2019-02-101-4/+2
|/ | | | | | | | | | | 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)
* Merge branch 'ghc-8.6' into wip/new-oceanAlec Theriault2018-11-091-1/+3
|\
| * Only run MathJax on entities with "mathjax" class (#960)Alec Theriault2018-11-051-1/+3
| | | | | | | | | | | | | | Correspondingly, we wrap all inline/diplay math in <span class="mathjax"> ... the math .... </span> This fixes #959.
* | Update test-suite reference html pagesNuno Alexandre2018-10-181-3/+3
| |
* | 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
|/
* Use <details> element for collapsibles (#690)Tim Baumann2017-10-091-35/+37
| | | | | | | | | | | * Remove unnecessary call to 'collapseSection' The call is unnecessary since there is no corresponding toggle for hiding the section of orphan instances. * Use <details> for collapsibles This makes them work even when JS is disabled. Closes #560.
* Add compile step that bundles and compresses JS files (#684)Tim Baumann2017-09-231-17/+2
| | | | | | | | | | | | | | | | | | * Add compile step that bundles and compresses JS files Also, manage dependencies on third-party JS libraries using NPM. * Compile JS from TypeScript * Enable 'noImplicitAny' in TypeScript * QuickJump: use JSX syntax * Generate source maps from TypeScript for easier debugging * TypeScript: more accurate type * Separate quick jump css file from ocean theme
* Fix test fallout (again)alexbiehl2017-08-291-0/+5
|
* Accept testsalexbiehl2017-08-281-6/+6
|
* Fix tests for content searchalexbiehl2017-08-281-0/+6
|
* Remove anything related to obsolete frames modealexbiehl2017-04-261-2/+2
|
* Use new MathJax URL in html-testalexbiehl2017-04-251-2/+2
| | | | | 18ed871afb82560d5433b2f53e31b4db9353a74e switched to a new MathJax URL but didn't update the tests.
* Update tests for previous commitPhil Ruffwind2016-02-081-16/+32
|
* html-test: Accept test outputBen Gamari2016-02-081-30/+27
|
* Update tests to follow HTML changesMateusz Kowalczyk2015-08-021-9/+9
|
* Add simple test case for arbitrary-depth list nesting.Łukasz Hanuszczak2015-05-271-10/+39
|
* support GHC 7.10: no Safe-Inferred, Foldable instancejpmoresmau2015-01-221-1/+1
|
* Fix extra whitespace on signatures and update all test casesNiklas Haas2014-08-241-14/+14
| | | | | This was long overdue, now running ./accept.lhs on a clean test from master will not generate a bunch of changes.
* Don't mangle append order for nested lists.Mateusz Kowalczyk2014-06-251-15/+39
| | | | | | | | The benefit of this is that the ‘top-level’ element of such lists is properly wrapped in <p> tags so any CSS working with these will be applied properly. It also just makes more sense. Pointed out at jgm/pandoc#1346.
* Drop DocParagraph from front of headersMateusz Kowalczyk2014-06-251-4/+2
| | | | | I can not remember why they were wrapped in paragraphs to begin with and it seems unnecessary now that I test it. Closes #307.
* Bump version to 2.15.0Mateusz Kowalczyk2014-03-111-1/+1
|
* Strip a single leading space from bird tracks (#201)Niklas Haas2014-02-221-9/+15
| | | | | | | | | | | | | | | | | | | | This makes bird tracks in the form > foo > bar > bat parse as if they had been written as >foo >bar >bat ie. without the leading whitespace in front of every line. Ideally we also want to look into how leading whitespace affects code blocks written using the @ @ syntax, which are currently unaffected by this patch.
* Allow for nesting of paragraphs under lists.Mateusz Kowalczyk2014-01-121-0/+288
The nesting rules are similar to Markdown's with the exception that we can not simply indent the first line of a hard wrapped indented paragraph and have it treated as if it was fully indented. The reason is differences in markup as some of our constructs care about whitespace while others just swallow everything up so it's just a lot easier to not bother with it rather than making arbitrary rules. Note that we now drop trailing for string entities inside of lists. They weren't needed and it makes the output look uniform whether we use a single or double newline between list elements. Conflicts: src/Haddock/Parser.hs test/Haddock/ParserSpec.hs