moe: html with style

[ bsd3, library, web ] [ Propose Tags ]

a purely functional html combinator with a clean syntax


[Skip to Readme]

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 base (>=4 && <5), data-default, mps (>=2009.8.18.1), mtl [details]
License BSD-3-Clause
Author Wang, Jinjing
Maintainer Wang, Jinjing <nfjinjing@gmail.com>
Category Web
Home page http://github.com/nfjinjing/moe
Uploaded by JinjingWang at 2009-08-25T19:06:37Z
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 uploaded by user
Build status unknown [no reports yet]

Readme for moe-2009.8.26

[back to package description]

Moe: html with style

Example

first page

-- test.hs

import Prelude hiding ((/), (-), head, (>), (.), div)
import MPS.Light ((-))
import Text.HTML.Moe

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">
    </meta>
    <title>
      my title
    </title>
    <link rel="icon" type="image/png" href="panda_icon.png">
    </link>
  </head>
  <body>
    <div class="container">
      hello world
    </div>
  </body>
</html>