Popularity
7.0
Growing
Activity
3.5
-
11
3
11

Monthly Downloads: 66
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Graphics    
Latest version: v0.7.0.0

lucid-svg alternatives and similar packages

Based on the "Graphics" category.
Alternatively, view lucid-svg alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of lucid-svg or a related project?

Add another 'Graphics' Package

README

lucid-svg Hackage

Simple DSL for writing SVG, based on lucid

Example

{-# LANGUAGE OverloadedStrings #-}

import Lucid.Svg

svg :: Svg () -> Svg ()
svg content = do
  doctype_
  with (svg11_ content) [width_ "300" , height_ "200"]

contents :: Svg ()
contents = do
  rect_   [width_ "100%", height_ "100%", fill_ "red"]
  circle_ [cx_ "150", cy_ "100", r_ "80", fill_ "green"]
  text_   [x_ "150", y_ "125", font_size_ "60", text_anchor_ "middle", fill_ "white"] "SVG"


main :: IO ()
main = do
  print $ svg contents

SVG