Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rnons/elm-svg-parser
- Owner: rnons
- License: bsd-3-clause
- Created: 2017-11-08T12:48:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-01-14T12:34:02.000Z (12 months ago)
- Last Synced: 2024-05-02T00:38:13.792Z (8 months ago)
- Topics: elm, parser, svg
- Language: Elm
- Homepage: http://package.elm-lang.org/packages/rnons/elm-svg-parser/latest
- Size: 20.5 KB
- Stars: 2
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```