Skip to content

Commit 28e4af7

Browse files
committed
Initial documentation website.
1 parent da6c1c6 commit 28e4af7

File tree

15 files changed

+8116
-338
lines changed

15 files changed

+8116
-338
lines changed

.babelrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"presets": [
3+
"@babel/preset-react"
4+
]
5+
}

.postcssrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"modules": true,
3+
"plugins": {
4+
"autoprefixer": {
5+
"grid": true
6+
}
7+
}
8+
}

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
react-markdown-editor
2+
===
3+
4+
5+
<p align="center">
6+
<a href="https://github.com/uiwjs/react-markdown-editor/issues">
7+
<img src="https://img.shields.io/github/issues/uiwjs/react-markdown-editor.svg">
8+
</a>
9+
<a href="https://github.com/uiwjs/react-markdown-editor/network">
10+
<img src="https://img.shields.io/github/forks/uiwjs/react-markdown-editor.svg">
11+
</a>
12+
<a href="https://github.com/uiwjs/react-markdown-editor/stargazers">
13+
<img src="https://img.shields.io/github/stars/uiwjs/react-markdown-editor.svg">
14+
</a>
15+
<a href="https://github.com/uiwjs/react-markdown-editor/releases">
16+
<img src="https://img.shields.io/github/release/uiwjs/react-markdown-editor.svg">
17+
</a>
18+
<a href="https://www.npmjs.com/package/@uiwjs/react-markdown-editor">
19+
<img src="https://img.shields.io/npm/v/@uiwjs/react-markdown-editor.svg">
20+
</a>
21+
</p>
22+
23+
24+
Markdown Editor Component for React.js
25+
26+
```bash
27+
npm i @uiwjs/react-markdown-editor
28+
```

declaration.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
declare module '*.less' {
2+
const content: any;
3+
export default content;
4+
}
5+
6+
declare module '*.svg' {
7+
const content: any;
8+
export default content;
9+
}

0 commit comments

Comments
 (0)