rnons/elm-svg-parser

parse String to SVG


Keywords
elm, parser, svg
License
BSD-3-Clause
Install
elm-package install rnons/elm-svg-parser 1.2.1

Documentation

elm-svg-parser

A library to parse String to SVG.

Build Status

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)