Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soaple/stickyboard-markdown
Markdown component for StickyBoard
https://github.com/soaple/stickyboard-markdown
Last synced: 15 days ago
JSON representation
Markdown component for StickyBoard
- Host: GitHub
- URL: https://github.com/soaple/stickyboard-markdown
- Owner: soaple
- License: mit
- Created: 2020-08-17T19:15:50.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-11T09:42:02.000Z (about 4 years ago)
- Last Synced: 2024-04-20T10:47:53.597Z (7 months ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stickyboard-markdown
Markdown component for StickyBoard
[![Version](https://img.shields.io/npm/v/@stickyboard/markdown.svg)](https://npmjs.org/package/@stickyboard/markdown)
[![Downloads/week](https://img.shields.io/npm/dw/@stickyboard/markdown.svg)](https://npmjs.org/package/@stickyboard/markdown)
[![License](https://img.shields.io/npm/l/@stickyboard/markdown.svg)](https://github.com/soaple/@stickyboard/markdown/blob/master/package.json)# Webpack watch
```bsh
$ npm start
```# Build
```bsh
$ npm run build
```# Usage example
```javascript
import React, { useState } from 'react';
import { Markdown } from '@stickyboard/markdown';function SampleMarkdown(props) {
const [content, setContent] = useState(
"# Header1\n## Header2\n### Header3"
);return (
{
setContent(content);
}}
/>
);
}export default SampleMarkdown;
```# License
This project is licenced under the [MIT License](http://opensource.org/licenses/mit-license.html).