Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translated first half of titles.md #236

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions syntax/titles.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
# Titles
# Titres

As we started writing a markdown document, we need to add a title and some sub-headers.
Lorsque l'on commence à écrire un document en markdown, on doit ajout un titre et des sous-titres.

Markdown supports two styles of headers, Setext and atx.
Le markdown supporte deux types de titres : Setext et atx.

Setext-style headers are “underlined” using equal signs (for first-level headers) and dashes (for second-level headers). For example:
Les titres de type Setext sous "soulignés" en utilisant de signes égal (pour les titres de premier niveau) et des tirets (pour les titres de second niveau). Par exemple:

```
This is an H1
Ceci est un H1
=============

This is an H2
Ceci est un H2
-------------
```

Any number of underlining =’s or -’s will work.
Cela fonctionne quel que soit le nombre de = ou de -.

Atx-style headers use 1-6 hash characters at the start of the line, corresponding to header levels 1-6. For example:
Les Titres de type atx utilisent de 1 à 6 caractères dièses au début de la ligne, correspondant au niveau du titre. Par exemple:

```
# This is an H1
# Ceci est un H1

## This is an H2
## Ceci est un H2

###### This is an H6
###### Ceci est un H6
```


Expand Down