moe: html with style

[ bsd3, library, web ] [ Propose Tags ]

a purely functional html combinator with a clean syntax


[Skip to Readme]

Modules

[Last Documentation]

  • Text
    • HTML
      • Text.HTML.Moe
        • Text.HTML.Moe.Attribute
        • Backend
          • Text.HTML.Moe.Backend.ByteString
        • DSL
          • Text.HTML.Moe.DSL.HTML5
          • Text.HTML.Moe.DSL.Kawaii
          • Text.HTML.Moe.DSL.Markdown
        • Text.HTML.Moe.Element
        • Text.HTML.Moe.Type
        • Text.HTML.Moe.Utils
      • Text.HTML.Moe2

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 2009.8.23, 2009.8.26, 2009.8.28, 2009.9.1, 2009.9.1.1, 2009.9.2, 2009.9.16, 2009.11.3, 2010.9.29, 2010.9.29.1, 2010.9.29.2, 2011.6.11, 2011.6.14, 2013.6.22, 2014.4.14, 2014.11.17, 2015.5.4
Change log changelog.md
Dependencies air (>=2011.6.11), base (>=4 && <5), bytestring, data-default, dlist, mtl, utf8-string [details]
License BSD-3-Clause
Author Jinjing Wang
Maintainer Jinjing Wang <nfjinjing@gmail.com>
Category Web
Home page http://github.com/nfjinjing/moe
Uploaded by JinjingWang at 2011-06-10T07:40:50Z
Distributions
Reverse Dependencies 3 direct, 1 indirect [details]
Downloads 11108 total (42 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-27 [all 7 reports]

Readme for moe-2011.6.11

[back to package description]

Moe: html with style

Example

first page

-- test.hs

import Prelude hiding ((/), (-), head, (>), (.), div)
import Air.Light ((-))
import Text.HTML.Moe2

test_page :: String
test_page = render -
  html - do
    head - do
      meta ! [http_equiv "Content-Type", content "text/html; charset-utf-8"] - (/)
      title - str "my title"
      link ! [rel "icon", _type "image/png", href "panda_icon.png"] - (/)

    body - do
      div ! [_class "container"] - do
        str "hello world"

main :: IO ()
main = putStrLn test_page

install and run

cabal update
cabal install moe

runghc test.hs

output:

<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset-utf-8" />
    <title>
      my title
    </title>
    <link rel="icon" type="image/png" href="panda_icon.png" />
  </head>
  <body>
    <div class="container">
      hello world
    </div>
  </body>
</html>

luba