Text formatting¶
To make it even easier to enter and consult data catalogs, Isogeo lets you format text fields using markdown syntax, which is also used in OpenCatalogs.
A memo is available in the form of a link next to each editable text field in the application, but here's an exhaustive list of what you can do.
A few recommendations:
- line breaks are interpreted. For example, to open a bulleted list, you need to skip a line;
- rendering may not be the same everywhere (depending on implementation);
- stick to simple formatting to avoid loss of legibility.
Tip
This online help is written entirely in Markdown!
Title levels¶
Syntax¶
# Titre 1
## Titre 2
### Titre 3
#### Titre 4
Rendering¶
Title 1¶
Title 2¶
Title 3¶
Title 4¶
Text style¶
Syntax¶
Mettre un texte en italique avec une *astérisque*
ou un _underscores (autrement appelés tiret du 8)_ de chaque côté.
Mettre un texte en gras avec deux **astérisques**
ou deux __underscores (autrement appelés tiret du 8)__ de chaque côté.
Barrer un texte avec deux ~~tildes~~ de chaque côté.
Combiner les différents styles est possible avec
un _underscore, **deux astérisques** et ~~deux tildes~~_.
Rendering¶
Italicize text with an asterisk or a underscore (otherwise known as a dash 8) on each side.
Bold text with two asterisks or two underscores (otherwise known as the dash 8) on each side.
Cross out text with two ~~tildes~~ on each side.
Combining different styles is possible with one underscore, two asterisks and ~~two tildes~~.
Bulleted lists¶
Syntax¶
Liste numérotée à plusieurs niveaux :
1. premier élément de la liste ;
2. deuxième élément de la liste ;
1. indenter avec 2 espaces avant le chiffre permet de faire des sous-listes imbriquées ;
2. deuxième élement de second niveau ;
3. troisième élément de la liste de 1er niveau qui contient une sous-liste non ordonnée :
* avec une astérisque ;
- avec un tiret ;
+ avec un plus.
Ou sans numéros :
* avec une astérisque,
- avec un tiret,
+ avec un plus.
Rendering¶
Multi-level numbered list :
- first element of the list ;
- second item in the list ;
- indent with 2 spaces before the number to create nested sub-lists;
- second level element ;
- third element of the 1st level list containing an unordered sub-list :
- with an asterisk ;
- with a hyphen ;
- with a plus.
Or without numbers :
- with an asterisk ;
- with a hyphen ;
- with a plus.
Links with tags¶
Syntax¶
[Lien simple vers le site Isogeo](http://www.isogeo.com)
[Lien simple vers le site Isogeo avec une référence](http://www.isogeo.com "Site d'Isogeo")
[Chemin relatif vers un fichier par exemple](../Isogeo.Help_fr.pdf)
Rendering¶
Simple link to the Isogeo website
Simple link to the Isogeo website with a reference
Relative path to a file, for example
Images¶
Please note that it is not possible to specify image dimensions. You must therefore link to an image that has already been resized.
Syntax¶
![Texte alternatif](https://www.isogeo.com/images/logos/nav-logo-isogeo.svg "Titre de l'image")