Skip to content

rnons/elm-svg-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

elm-svg-parser

NOTE: This repo is not maintained any more. Feel free to fork and upload to elm-packages by yourself.

A library to parse String to SVG.

Build Status Elm package

Parse

Normally parse is the only function you need.

import SvgParser exposing (parse)

parse "<svg xmlns=\"http://www.w3.org/2000/svg\"></svg>" : Result String (Html msg)