mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-02 10:00:17 +05:30
- Normalize line endings across all files - Remove rpm target from Linux build (requires rpmbuild) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
469 B
Markdown
26 lines
469 B
Markdown
# Test Document
|
|
|
|
This is a test markdown document for export testing.
|
|
|
|
## Features
|
|
|
|
- **Bold text**
|
|
- *Italic text*
|
|
- [Links](https://example.com)
|
|
|
|
## Code Example
|
|
|
|
```javascript
|
|
function hello() {
|
|
console.log("Hello World!");
|
|
}
|
|
```
|
|
|
|
## Table
|
|
|
|
| Column 1 | Column 2 | Column 3 |
|
|
|----------|----------|----------|
|
|
| Value 1 | Value 2 | Value 3 |
|
|
| Value 4 | Value 5 | Value 6 |
|
|
|
|
This is a test document to verify export functionality. |