mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-22 04:09:22 +00:00
49 lines
975 B
Markdown
49 lines
975 B
Markdown
![]() |
# Test Document for Convert Tool
|
||
|
|
||
|
This is a **test** markdown file for testing the markdown to PDF conversion functionality.
|
||
|
|
||
|
## Features Being Tested
|
||
|
|
||
|
- **Bold text**
|
||
|
- *Italic text*
|
||
|
- [Links](https://example.com)
|
||
|
- Lists and formatting
|
||
|
|
||
|
### Code Block
|
||
|
|
||
|
```javascript
|
||
|
console.log('Hello, world!');
|
||
|
function testFunction() {
|
||
|
return "This is a test";
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Table
|
||
|
|
||
|
| Column 1 | Column 2 | Column 3 |
|
||
|
|----------|----------|----------|
|
||
|
| Data 1 | Data 2 | Data 3 |
|
||
|
| Test A | Test B | Test C |
|
||
|
|
||
|
## Lists
|
||
|
|
||
|
### Unordered List
|
||
|
- Item 1
|
||
|
- Item 2
|
||
|
- Nested item
|
||
|
- Another nested item
|
||
|
- Item 3
|
||
|
|
||
|
### Ordered List
|
||
|
1. First item
|
||
|
2. Second item
|
||
|
3. Third item
|
||
|
|
||
|
## Blockquote
|
||
|
|
||
|
> This is a blockquote for testing purposes.
|
||
|
> It should be properly formatted in the PDF output.
|
||
|
|
||
|
## Conclusion
|
||
|
|
||
|
This markdown file contains various elements to test the conversion functionality. The PDF output should preserve formatting, tables, code blocks, and other markdown elements.
|