Files
SaaS2/public/test2.md
RUI 27733bd91e
All checks were successful
Next.js CI/CD 流水线 / deploy (push) Successful in 4m44s
0610.1
2025-06-10 16:14:49 +08:00

59 lines
1.0 KiB
Markdown

# h1
<br/>
## h2
<br/>
**Paragraph** Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
<br/>
[Link (https://www.google.com/)](https://www.google.com/)
<br/>
###### Lists
<br/>
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
<br/>
---
<br/>
###### A table:
<br/>
| Syntax | Description | Test Text |
| :--- | :----: | ---: |
| Header | Title | Here's this |
| Paragraph | Text | And more |
<br/>
```tsx
import React from 'react';
import ReactDOM from 'react-dom';
import ReactMarkdown from 'react-markdown';
import rehypeHighlight from 'rehype-highlight';
ReactDOM.render(
<ReactMarkdown rehypePlugins={[rehypeHighlight]}>{'# Your markdown here'}</ReactMarkdown>,
document.querySelector('#content')
);
```
<br/>
![aoun](/aoun.png)
> A block quote with ~~strikethrough~~ and a URL: [https://reactjs.org](https://reactjs.org).