mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-11-04 16:34:28 +00:00
* feat(Map): Add widget for comments. Refactor design of Signatures widget. Refactor a lot of code. Add Transition component in ui-kit. Sync versions of react. --------- Co-authored-by: Dmitry Popov <dmitriypopovsamara@gmail.com> Co-authored-by: achichenkov <aleksei.chichenkov@telleqt.ai>
27 lines
490 B
TypeScript
27 lines
490 B
TypeScript
export const markdown = `
|
|
# Heading 1
|
|
## Heading 2
|
|
### Heading 3
|
|
#### Heading 4
|
|
##### Heading 5
|
|
###### Heading 6
|
|
|
|
---
|
|
|
|
## Paragraphs
|
|
This is a regular text paragraph.
|
|
|
|
Another paragraph, but with **bold** and *italic* text, as well as ~~strikethrough~~.
|
|
|
|
> This is a block quote.
|
|
> Second line of the quote.
|
|
|
|
## Links
|
|
[Link to Google](https://www.google.com)
|
|
|
|
## Horizontal Line
|
|
A block quote with ~strikethrough~ and a URL: https://reactjs.org.
|
|
---
|
|
|
|
`;
|