aboutsummaryrefslogtreecommitdiff
path: root/haddock-library/test
Commit message (Collapse)AuthorAgeFilesLines
* @since includes package name (#749)Alec Theriault2018-03-271-5/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Metadoc stores a package name This means that '@since' annotations can be package aware. * Get the package name the right way This should extract the package name for `@since` annotations the right way. I had to move `modulePackageInfo` around to do this and, in the process, I took the liberty to update it. Since it appears that finding the package name is something that can fail, I added a warning for this case. * Silence warnings * Hide package for local 'since' annotations As discussed, this is still the usual case (and we should avoid being noisy for it). Although this commit is large, it is basically only about threading a 'Maybe Package' from 'Haddock.render' all the way to 'Haddock.Backends.Xhtml.DocMarkup.renderMeta'. * Bump binary interface version * Add a '--since-qual' option This controls when to qualify since annotations with the package they come from. The default is always, but I've left an 'external' variant where only those annotations coming from outside of the current package are qualified. * Make ParserSpec work * Make Fixtures work * Use package name even if package version is not available The @since stuff needs only the package name passed in, so it makes sense to not be forced to pass in a version too.
* Make test-suite SMP compatibleHerbert Valerio Riedel2018-02-051-0/+2
|
* Avoid trivial use of LambdaCaseHerbert Valerio Riedel2017-07-201-2/+1
| | | | otherwise we can't test w/ e.g. GHC 7.4.2
* Fix the documentation for haddock itself.Dominic Steinitz2015-12-211-0/+4
| | | | | | | | | | | | | | | Change notation and add support for inline math. Allow newlines in display math. Add a command line option for the mathjax url (you might want to use a locally installed version). Rebase tests because of extra url and version change. Respond to (some of the) comments. Fix warnings in InterfaceFile.hs
* Add arbitrary-indent spec test for parser.Łukasz Hanuszczak2015-06-031-0/+17
|
* Update test to account for \r filteringMateusz Kowalczyk2015-03-261-2/+5
|
* Allow the parser to spit out meta-infoMateusz Kowalczyk2014-12-101-7/+16
| | | | | | | | | | | | | | | Currently we only use it only for ‘since’ annotations but with these patches it should be fairly simple to add new attributes if we wish to. Closes #26. It seems to work fine but due to 7.10 rush I don't have the chance to do more exhaustive testing right now. The way the meta is output (emphasis at the end of the whole comment) is fairly arbitrary and subject to bikeshedding. Note that this makes test for Bug310 fail due to interface version bump: it can't find the docs for base with this interface version so it fails. There is not much we can do to help this because it tests for ’built-in’ identifier, not something we can provide ourselves.
* (wip) Add support for @since (closes #26)Simon Hengel2014-11-162-6/+25
|
* newtype-wrap parser monadSimon Hengel2014-11-081-1/+1
|
* Fix parsing of identifiers written in infix wayMateusz Kowalczyk2014-11-041-0/+6
|
* Allow an optional colon after the closing bracket of definition listsSimon Hengel2014-11-031-15/+27
| | | | | This is to disambiguate them from markdown links and will be require with a future release.
* Add support for markdown imagesSimon Hengel2014-11-031-13/+11
|
* Allow markdown links at the beginning of a paragraphSimon Hengel2014-11-031-3/+25
|
* Add support for markdown links (closes #336)Simon Hengel2014-11-031-0/+39
|
* Remove unused language extensionsSimon Hengel2014-11-031-1/+0
|
* Fix warningSimon Hengel2014-08-201-0/+1
|
* Fix #313 by doing some list munging.Mateusz Kowalczyk2014-08-151-1/+19
| | | | | | I get rid of the Monoid instance because we weren't satisfying the laws. Convenience of having <> didn't outweigh the shock-factor of having it behave badly.
* Catch mid-line URLs. Fixes #314.Mateusz Kowalczyk2014-07-281-0/+4
|
* Don't mangle append order for nested lists.Mateusz Kowalczyk2014-06-251-8/+8
| | | | | | | | 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-5/+4
| | | | | I can not remember why they were wrapped in paragraphs to begin with and it seems unnecessary now that I test it. Closes #307.
* Fix anchors. Closes #308.Mateusz Kowalczyk2014-06-251-0/+13
|
* Remove doctest dependencySimon Hengel2014-06-181-11/+0
| | | | (so that we can use haddock-library with doctest)
* Use doctest to check examples in documentationSimon Hengel2014-06-181-0/+11
|
* Compatibility with older versions of base and bytestringSimon Hengel2014-06-181-1/+1
|
* Move out Show and Eq instances to TypesMateusz Kowalczyk2014-05-051-8/+2
| | | | They are much more useful to the users here.
* Move parser + parser tests out to own package.Mateusz Kowalczyk2014-05-054-0/+853
We move some types out that are necessary as well and then re-export and specialise them in the core Haddock. Reason for moving out spec tests is that if we're working on the parser, we can simply work on that and we can ignore the rest of Haddock. The downside is that it's a little inconvenient if at the end of the day we want to see that everything passes.