Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 617 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 617 Bytes

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)