https://github.com/ephys/react-tiny-markdown
Tiny slack/discord/whatsapp/telegram flavored markdown built on top of Autolinker & markdown-ast
https://github.com/ephys/react-tiny-markdown
Last synced: 3 days ago
JSON representation
Tiny slack/discord/whatsapp/telegram flavored markdown built on top of Autolinker & markdown-ast
- Host: GitHub
- URL: https://github.com/ephys/react-tiny-markdown
- Owner: ephys
- Created: 2020-06-18T09:08:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-18T09:35:54.000Z (about 6 years ago)
- Last Synced: 2025-10-24T13:03:06.485Z (8 months ago)
- Language: TypeScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-tiny-markdown
*Slack (& other chat app) flavored markdown*
## example
```tsx
import React from 'react';
import { Markdown } from '@ephys/react-tiny-markdown';
import '@ephys/react-tiny-markdown/src/default-styles.scss';
export function MyComponent() {
return (
body: regular link https://google.com (autolinker)
[text link](https://google.com)
# titles not allowed
`code linline`
```
multiline
code block
```
*italic*
**bold**
> quote
> of
> something
paragraph 1
paragraph 2
- list item
- list item
- list item
1. ol sublist
2. ol sublist 2
- we can go deeper
~~strike~~
---
this is all
);
}
```