💂♂️ fixed lint and prittier
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
---
|
||||
title: "Getting Started with Next.js 15"
|
||||
description: "Learn how to build modern web applications with Next.js 15 and TypeScript."
|
||||
date: "2025-01-07"
|
||||
author: "John Doe"
|
||||
category: "Tutorial"
|
||||
tags: ["nextjs", "typescript", "tutorial"]
|
||||
title: 'Getting Started with Next.js 15'
|
||||
description: 'Learn how to build modern web applications with Next.js 15 and TypeScript.'
|
||||
date: '2025-01-07'
|
||||
author: 'John Doe'
|
||||
category: 'Tutorial'
|
||||
tags: ['nextjs', 'typescript', 'tutorial']
|
||||
---
|
||||
|
||||
# Getting Started with Next.js 15
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
---
|
||||
title: "Articol Tehnic din Subdirector"
|
||||
description: "Test pentru subdirectoare și organizare ierarhică"
|
||||
date: "2025-01-10"
|
||||
author: "Tech Writer"
|
||||
category: "Tehnologie"
|
||||
tags: ["nextjs", "react", "typescript"]
|
||||
title: 'Articol Tehnic din Subdirector'
|
||||
description: 'Test pentru subdirectoare și organizare ierarhică'
|
||||
date: '2025-01-10'
|
||||
author: 'Tech Writer'
|
||||
category: 'Tehnologie'
|
||||
tags: ['nextjs', 'react', 'typescript']
|
||||
draft: false
|
||||
---
|
||||
|
||||
@@ -25,14 +25,14 @@ Next.js este un framework React puternic care oferă:
|
||||
|
||||
```typescript
|
||||
interface User {
|
||||
id: number;
|
||||
name: string;
|
||||
email: string;
|
||||
id: number
|
||||
name: string
|
||||
email: string
|
||||
}
|
||||
|
||||
async function fetchUser(id: number): Promise<User> {
|
||||
const response = await fetch(`/api/users/${id}`);
|
||||
return response.json();
|
||||
const response = await fetch(`/api/users/${id}`)
|
||||
return response.json()
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
---
|
||||
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"
|
||||
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***.
|
||||
Acesta este un paragraf normal cu **text bold** și _text italic_. Putem combina **_bold și italic_**.
|
||||
|
||||
## Heading 2
|
||||
|
||||
@@ -47,11 +47,11 @@ Bloc de cod JavaScript:
|
||||
|
||||
```javascript
|
||||
function greet(name) {
|
||||
console.log(`Hello, ${name}!`);
|
||||
return true;
|
||||
console.log(`Hello, ${name}!`)
|
||||
return true
|
||||
}
|
||||
|
||||
greet("World");
|
||||
greet('World')
|
||||
```
|
||||
|
||||
Bloc de cod Python:
|
||||
@@ -85,7 +85,7 @@ print(f"Result: {result}")
|
||||
## 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 |
|
||||
|
||||
Reference in New Issue
Block a user