test md proj

This commit is contained in:
matthieu42morin 2023-11-13 23:59:59 +01:00
parent 8282eae10f
commit 417f06933e
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
---
title: First Project
excerpt: This is the first project
date: 2021-01-01
tags:
- first
- post
published: true
image: Feature.jpg
---
## Svelte
Media inside the **Svelte** folder is served from the `static` folder.
```python
input_text = ''' "yahooapis.com",
"hotmail.com",
"gfx.ms",
"afx.ms",
"live.com",
'''
# and so on...
lines = input_text.split('\n')
formatted_lines = ['* ' + line.strip()[1:-2] + ' * block' for line in lines if line]
output_text = '\n'.join(formatted_lines)
print(output_text)
```