Some checks failed
Build and Deploy Next.js Blog to Production / 🔍 Code Quality Checks (push) Failing after 18s
Build and Deploy Next.js Blog to Production / 🏗️ Build and Push Docker Image (push) Has been skipped
Build and Deploy Next.js Blog to Production / 🚀 Deploy to Production (push) Has been skipped
110 lines
1.6 KiB
Markdown
110 lines
1.6 KiB
Markdown
---
|
|
title: 'Test Complet Markdown'
|
|
description: 'Un articol de test care demonstrează toate elementele markdown suportate'
|
|
date: '2025-01-15'
|
|
author: 'Test Author'
|
|
category: 'Tutorial'
|
|
tags: ['markdown', 'test', 'demo']
|
|
image: '/38636.jpg'
|
|
draft: false
|
|
---
|
|
|
|
# Heading 1
|
|
|
|
Acesta este un paragraf normal cu **text bold** și _text italic_. Putem combina **_bold și italic_**.
|
|
|
|
## Heading 2
|
|
|
|
### Heading 3
|
|
|
|
#### Heading 4
|
|
|
|
##### Heading 5
|
|
|
|
###### Heading 6
|
|
|
|
## Liste
|
|
|
|
### Listă neordonată
|
|
|
|
- Item 1
|
|
- Item 2
|
|
- Subitem 2.1
|
|
- Subitem 2.2
|
|
- Item 3
|
|
|
|
### Listă ordonată
|
|
|
|
1. Primul item
|
|
2. Al doilea item
|
|
3. Al treilea item
|
|
|
|
## Cod
|
|
|
|
Cod inline: `const x = 42;`
|
|
|
|
Bloc de cod JavaScript:
|
|
|
|
```javascript
|
|
function greet(name) {
|
|
console.log(`Hello, ${name}!`)
|
|
return true
|
|
}
|
|
|
|
greet('World')
|
|
```
|
|
|
|
Bloc de cod Python:
|
|
|
|
```python
|
|
def calculate_sum(a, b):
|
|
"""Calculate sum of two numbers"""
|
|
return a + b
|
|
|
|
result = calculate_sum(5, 10)
|
|
print(f"Result: {result}")
|
|
```
|
|
|
|
## Blockquote
|
|
|
|
> Acesta este un blockquote.
|
|
> Poate avea multiple linii.
|
|
>
|
|
> Și paragrafe separate.
|
|
|
|
## Link-uri
|
|
|
|
[Link intern](/blog/alt-articol)
|
|
|
|
[Link extern](https://example.com)
|
|
|
|
## Imagini
|
|
|
|

|
|
|
|
## Tabele
|
|
|
|
| Coloana 1 | Coloana 2 | Coloana 3 |
|
|
| --------- | --------- | --------- |
|
|
| Celula 1 | Celula 2 | Celula 3 |
|
|
| Date 1 | Date 2 | Date 3 |
|
|
| Info 1 | Info 2 | Info 3 |
|
|
|
|
## Linie orizontală
|
|
|
|
---
|
|
|
|
## Task List (GFM)
|
|
|
|
- [x] Task completat
|
|
- [ ] Task incomplet
|
|
- [ ] Alt task
|
|
|
|
## Strikethrough
|
|
|
|
~~Text șters~~
|
|
|
|
## Concluzie
|
|
|
|
Acesta este sfârșitul articolului de test.
|