blaze-html icon indicating copy to clipboard operation
blaze-html copied to clipboard

A blazingly fast HTML combinator library for Haskell.

Results 37 blaze-html issues
Sort by recently updated
recently updated
newest added

`MarkupM` is a `Monad`, but you can't really use that fact, because all the useful combinators have types like: body :: MarkupM () -> MarkupM () A friendlier type would...

https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-download

Builds fine and all tests pass.

The `property` in `meta` tags allows you to specify values to property fields which come from a property library. The property library (RDFa format) is specified in the head tag.

http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#boolean-attribute Currently attributes like `disabled` and `checked` (there are many more) in blaze-html all take an argument which means you have to give them the empty string or the name...

please update so that testsuite can be built with QuickCheck 2.12 and 2.13

Two class attributes are created instead of just one with their values combined. ```haskell > renderHtml $ div ! (class_ "hi" class_ "there") $ "innerhtml" ``` ```html innerhtml ```

`Text.Blaze.Html5.Attributes` does not export `minlength`

https://www.w3schools.com/tags/att_audio_muted.asp

Sometimes browser plugins insert elements into the DOM. I have found it useful to insert markers that show the beginning and ending of my elements. I have been using fake...