Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rnons/elm-svg-parser

parse String to SVG
https://github.com/rnons/elm-svg-parser

elm parser svg

Last synced: 2 months ago
JSON representation

parse String to SVG

Awesome Lists containing this project

README

        

# 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](https://travis-ci.org/rnons/elm-svg-parser.svg?branch=master)](https://travis-ci.org/rnons/elm-svg-parser)
[![Elm package](https://img.shields.io/elm-package/v/rnons/elm-svg-parser.svg)](http://package.elm-lang.org/packages/rnons/elm-svg-parser/latest)

## Parse

Normally `parse` is the only function you need.

```
import SvgParser exposing (parse)

parse "" : Result String (Html msg)
```