vault backup: 2025-12-10 12:38:55
This commit is contained in:
parent
073ef0fd3b
commit
b6d13f24df
2 changed files with 8 additions and 364 deletions
|
|
@ -165,193 +165,15 @@ Pour voir les propriétés YAML (frontmatter) directement dans l'éditeur, séle
|
|||
|
||||
### Template pour article de blog
|
||||
|
||||
<details>
|
||||
<summary><strong>Voir le template blog-cheatsheet.md</strong></summary>
|
||||
[Télécharger blog-cheatsheet.md](/templates/blog-cheatsheet.md)
|
||||
|
||||
```markdown
|
||||
---
|
||||
slug: titre-slug
|
||||
title: "Titre de l'article"
|
||||
authors: [tellserv]
|
||||
tags: [tag1, tag2, tag3]
|
||||
date: {{date:YYYY-MM-DD}}
|
||||
image: /img/blog/{{date:YYYY-MM-DD}}-slug/banniere.png
|
||||
---
|
||||
|
||||
Résumé court avant la coupure...
|
||||
|
||||
<!--truncate-->
|
||||
|
||||
## Fonctionnalités disponibles
|
||||
|
||||
### Images
|
||||
|
||||
<!-- Image simple -->
|
||||

|
||||
|
||||
<!-- Image avec légende -->
|
||||

|
||||
*Légende en italique sous l'image*
|
||||
|
||||
<!-- Image centrée avec taille personnalisée -->
|
||||
<p align="center">
|
||||
<img src="/img/blog/dossier/banniere.png" alt="Description" width="600" />
|
||||
</p>
|
||||
|
||||
### PDF et téléchargements
|
||||
|
||||
<!-- Lien de téléchargement PDF -->
|
||||
[📥 Télécharger le PDF](/img/diagrams/schema.pdf)
|
||||
|
||||
### Tableaux
|
||||
|
||||
| Colonne 1 | Colonne 2 | Colonne 3 |
|
||||
|-----------|-----------|-----------|
|
||||
| Valeur A | Valeur B | Valeur C |
|
||||
| Valeur D | Valeur E | Valeur F |
|
||||
|
||||
### Blocs de code
|
||||
|
||||
```bash
|
||||
# Commande shell
|
||||
commande --option valeur
|
||||
```
|
||||
|
||||
```yaml
|
||||
# Configuration YAML
|
||||
key: value
|
||||
```
|
||||
|
||||
```python
|
||||
# Code Python
|
||||
def fonction():
|
||||
return True
|
||||
```
|
||||
|
||||
### Listes
|
||||
|
||||
- Point simple
|
||||
- **Point en gras** : avec explication
|
||||
- Sous-point indenté
|
||||
|
||||
1. Étape 1
|
||||
2. Étape 2
|
||||
3. Étape 3
|
||||
|
||||
### Liens
|
||||
|
||||
- Lien interne doc : [Texte](/docs/categorie/page)
|
||||
- Lien interne blog : [Texte](/blog/slug-article)
|
||||
- Lien externe : [Texte](https://example.com)
|
||||
|
||||
### Mise en forme
|
||||
|
||||
- `code inline` pour paramètres/commandes
|
||||
- **gras** pour emphase forte
|
||||
- _italique_ pour légendes
|
||||
|
||||
### Structure de dossier
|
||||
|
||||
```
|
||||
arborescence/
|
||||
├── fichier1.yml
|
||||
├── dossier/
|
||||
│ └── fichier2.yml
|
||||
└── README.md
|
||||
```
|
||||
```
|
||||
|
||||
</details>
|
||||
Ce template contient le frontmatter complet pour un article de blog avec tous les exemples de syntaxe Markdown et Docusaurus.
|
||||
|
||||
### Template pour documentation
|
||||
|
||||
<details>
|
||||
<summary><strong>Voir le template doc-cheatsheet.md</strong></summary>
|
||||
[Télécharger doc-cheatsheet.md](/templates/doc-cheatsheet.md)
|
||||
|
||||
```markdown
|
||||
---
|
||||
sidebar_position: 1
|
||||
tags: [tag1, tag2, tag3]
|
||||
last_update:
|
||||
date: {{date:YYYY-MM-DD}}
|
||||
---
|
||||
|
||||
# Titre de la page
|
||||
|
||||
## Fonctionnalités disponibles
|
||||
|
||||
### Schémas avec PDF
|
||||
|
||||

|
||||
|
||||
[📥 Télécharger le PDF](/img/diagrams/nom-schema.pdf)
|
||||
|
||||
### Images simples
|
||||
|
||||

|
||||
|
||||
*Légende optionnelle en italique*
|
||||
|
||||
### Tableaux
|
||||
|
||||
| Paramètre | Description | Valeur |
|
||||
|-----------|-------------|--------|
|
||||
| `param1` | Explication | val1 |
|
||||
| `param2` | Explication | val2 |
|
||||
|
||||
### Blocs de code avec langage
|
||||
|
||||
```bash
|
||||
# Commande shell
|
||||
commande exemple
|
||||
```
|
||||
|
||||
```yaml
|
||||
# Configuration YAML
|
||||
config: valeur
|
||||
```
|
||||
|
||||
```python
|
||||
# Code Python
|
||||
def fonction():
|
||||
return True
|
||||
```
|
||||
|
||||
### Listes et sous-listes
|
||||
|
||||
- **Titre point** : Explication
|
||||
- Sous-point
|
||||
- Autre sous-point
|
||||
- Autre point
|
||||
|
||||
1. Première étape
|
||||
2. Deuxième étape
|
||||
3. Troisième étape
|
||||
|
||||
### Structure arborescente
|
||||
|
||||
```
|
||||
projet/
|
||||
├── dossier1/
|
||||
│ └── fichier.yml
|
||||
└── dossier2/
|
||||
└── autre.yml
|
||||
```
|
||||
|
||||
### Liens
|
||||
|
||||
- [Autre doc](/docs/autre-page)
|
||||
- [Article blog](/blog/slug)
|
||||
- [Externe](https://url.com)
|
||||
|
||||
### Mise en forme
|
||||
|
||||
- `code inline` pour paramètres/commandes
|
||||
- **gras** pour emphase
|
||||
- _italique_ pour légendes
|
||||
```
|
||||
|
||||
</details>
|
||||
Ce template contient le frontmatter complet pour une page de documentation avec tous les exemples de syntaxe.
|
||||
|
||||
**Note importante** : `{{date:YYYY-MM-DD}}` est automatiquement remplacé par Obsidian lors de l'insertion du template avec la date du jour.
|
||||
|
||||
|
|
|
|||
|
|
@ -165,193 +165,15 @@ To see YAML properties (frontmatter) directly in the editor, select "source" in
|
|||
|
||||
### Blog post template
|
||||
|
||||
<details>
|
||||
<summary><strong>View blog-cheatsheet.md template</strong></summary>
|
||||
[Download blog-cheatsheet.md](/templates/blog-cheatsheet.md)
|
||||
|
||||
```markdown
|
||||
---
|
||||
slug: titre-slug
|
||||
title: "Titre de l'article"
|
||||
authors: [tellserv]
|
||||
tags: [tag1, tag2, tag3]
|
||||
date: {{date:YYYY-MM-DD}}
|
||||
image: /img/blog/{{date:YYYY-MM-DD}}-slug/banniere.png
|
||||
---
|
||||
|
||||
Résumé court avant la coupure...
|
||||
|
||||
<!--truncate-->
|
||||
|
||||
## Fonctionnalités disponibles
|
||||
|
||||
### Images
|
||||
|
||||
<!-- Image simple -->
|
||||

|
||||
|
||||
<!-- Image avec légende -->
|
||||

|
||||
*Légende en italique sous l'image*
|
||||
|
||||
<!-- Image centrée avec taille personnalisée -->
|
||||
<p align="center">
|
||||
<img src="/img/blog/dossier/banniere.png" alt="Description" width="600" />
|
||||
</p>
|
||||
|
||||
### PDF et téléchargements
|
||||
|
||||
<!-- Lien de téléchargement PDF -->
|
||||
[📥 Télécharger le PDF](/img/diagrams/schema.pdf)
|
||||
|
||||
### Tableaux
|
||||
|
||||
| Colonne 1 | Colonne 2 | Colonne 3 |
|
||||
|-----------|-----------|-----------|
|
||||
| Valeur A | Valeur B | Valeur C |
|
||||
| Valeur D | Valeur E | Valeur F |
|
||||
|
||||
### Blocs de code
|
||||
|
||||
```bash
|
||||
# Commande shell
|
||||
commande --option valeur
|
||||
```
|
||||
|
||||
```yaml
|
||||
# Configuration YAML
|
||||
key: value
|
||||
```
|
||||
|
||||
```python
|
||||
# Code Python
|
||||
def fonction():
|
||||
return True
|
||||
```
|
||||
|
||||
### Listes
|
||||
|
||||
- Point simple
|
||||
- **Point en gras** : avec explication
|
||||
- Sous-point indenté
|
||||
|
||||
1. Étape 1
|
||||
2. Étape 2
|
||||
3. Étape 3
|
||||
|
||||
### Liens
|
||||
|
||||
- Lien interne doc : [Texte](/docs/categorie/page)
|
||||
- Lien interne blog : [Texte](/blog/slug-article)
|
||||
- Lien externe : [Texte](https://example.com)
|
||||
|
||||
### Mise en forme
|
||||
|
||||
- `code inline` pour paramètres/commandes
|
||||
- **gras** pour emphase forte
|
||||
- _italique_ pour légendes
|
||||
|
||||
### Structure de dossier
|
||||
|
||||
```
|
||||
arborescence/
|
||||
├── fichier1.yml
|
||||
├── dossier/
|
||||
│ └── fichier2.yml
|
||||
└── README.md
|
||||
```
|
||||
```
|
||||
|
||||
</details>
|
||||
This template contains the complete frontmatter for a blog post with all Markdown and Docusaurus syntax examples.
|
||||
|
||||
### Documentation template
|
||||
|
||||
<details>
|
||||
<summary><strong>View doc-cheatsheet.md template</strong></summary>
|
||||
[Download doc-cheatsheet.md](/templates/doc-cheatsheet.md)
|
||||
|
||||
```markdown
|
||||
---
|
||||
sidebar_position: 1
|
||||
tags: [tag1, tag2, tag3]
|
||||
last_update:
|
||||
date: {{date:YYYY-MM-DD}}
|
||||
---
|
||||
|
||||
# Titre de la page
|
||||
|
||||
## Fonctionnalités disponibles
|
||||
|
||||
### Schémas avec PDF
|
||||
|
||||

|
||||
|
||||
[📥 Télécharger le PDF](/img/diagrams/nom-schema.pdf)
|
||||
|
||||
### Images simples
|
||||
|
||||

|
||||
|
||||
*Légende optionnelle en italique*
|
||||
|
||||
### Tableaux
|
||||
|
||||
| Paramètre | Description | Valeur |
|
||||
|-----------|-------------|--------|
|
||||
| `param1` | Explication | val1 |
|
||||
| `param2` | Explication | val2 |
|
||||
|
||||
### Blocs de code avec langage
|
||||
|
||||
```bash
|
||||
# Commande shell
|
||||
commande exemple
|
||||
```
|
||||
|
||||
```yaml
|
||||
# Configuration YAML
|
||||
config: valeur
|
||||
```
|
||||
|
||||
```python
|
||||
# Code Python
|
||||
def fonction():
|
||||
return True
|
||||
```
|
||||
|
||||
### Listes et sous-listes
|
||||
|
||||
- **Titre point** : Explication
|
||||
- Sous-point
|
||||
- Autre sous-point
|
||||
- Autre point
|
||||
|
||||
1. Première étape
|
||||
2. Deuxième étape
|
||||
3. Troisième étape
|
||||
|
||||
### Structure arborescente
|
||||
|
||||
```
|
||||
projet/
|
||||
├── dossier1/
|
||||
│ └── fichier.yml
|
||||
└── dossier2/
|
||||
└── autre.yml
|
||||
```
|
||||
|
||||
### Liens
|
||||
|
||||
- [Autre doc](/docs/autre-page)
|
||||
- [Article blog](/blog/slug)
|
||||
- [Externe](https://url.com)
|
||||
|
||||
### Mise en forme
|
||||
|
||||
- `code inline` pour paramètres/commandes
|
||||
- **gras** pour emphase
|
||||
- _italique_ pour légendes
|
||||
```
|
||||
|
||||
</details>
|
||||
This template contains the complete frontmatter for a documentation page with all syntax examples.
|
||||
|
||||
**Important note**: `{{date:YYYY-MM-DD}}` is automatically replaced by Obsidian when inserting the template with the current date.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue