react-markdown-el
Advanced tools
Comparing version 0.0.1 to 1.0.0
@@ -1,1 +0,1 @@ | ||
module.exports = require('./ReactMarkdownEl'); | ||
module.exports = require('./ReactMarkdown'); |
{ | ||
"name": "react-markdown-el", | ||
"version": "0.0.1", | ||
"version": "1.0.0", | ||
"description": "A simple React component that parses and renders markdown text", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -14,5 +14,5 @@ react-markdown-el | ||
Simple usage just takes in markdown as a `text` property: | ||
Basic usage just takes in markdown as a `text` property: | ||
var MarkdownEl = require('react-markdown-el'); | ||
var Markdown = require('react-markdown-el'); | ||
@@ -23,3 +23,3 @@ ... | ||
return ( | ||
<MarkdownEl text={text}/> | ||
<Markdown text={text}/> | ||
) | ||
@@ -31,5 +31,5 @@ } | ||
<MarkdownEl el="a" | ||
href="http://example.com" | ||
className="custom-markdown-link" | ||
text={text} /> | ||
<Markdown el="a" | ||
href="http://example.com" | ||
className="custom-markdown-link" | ||
text={text} /> |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
1
3291