RÉMY LAFAYE

Développeur intégrateur web

Test Post

This is a test post.

Note: Since it is a markdown file, the content is written in markdown format. The content is converted to HTML format using the markdown parser.

1. Create a new post

  • To create a new post, create a new markdown file in the src/assets/posts directory.
  • Add the front matter to the markdown file if you want to add metadata to the post.
  • Write the content of the post in markdown format.

2. MARKDOWN CHEATSHEET

Headings:

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Bold:

**This is bold text**

BOLD


Italic:

*This is italic text*

ITALIC


Blockquote:

> This is a blockquote

blockquote


Ordered List:

1. First item
2. Second item
3. Third item

  1. First item
  2. Second item
  3. Third item

Unordered List:

- First item
- Second item
- Third item
  • First item
  • Second item
  • Third item

Code:

`code`

code


Link:

    [Link Text](https://www.example.com)

Link Text


Image:

![Alt Text](https://www.example.com/image.jpg)

Alt Text


Table:

| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
Header 1Header 2
Cell 1Cell 2

Horizontal Rule:

---


Strikethrough:

~~Strikethrough~~

Strikethrough


Footnote:


Here's a footnote reference,[^1] and another.[^longnote]

[^1]: Here's the footnote.
[^longnote]: Here's the long footnote.

Definition List:

Term 1
: Definition 1

Term 2
: Definition 2

Term 1 : Definition 1

Term 2 : Definition 2


Math:

$$
\begin{aligned}
  x' &= x \cos \theta - y \sin \theta \\
  y' &= x \sin \theta + y \cos \theta
\end{aligned}
$$

Task List:


- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
  • Write the press release
  • Update the website
  • Contact the media

Emoji:

:smile:

:smile:


END