Skip to content

Garados007/elm-svg-parser

 
 

Repository files navigation

elm-svg-parser

Note: This repo is an update to work with elm 0.19.

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)