Skip to content
/ docs Public
forked from withastro/docs

Commit

Permalink
space before colon and last comment line was not translated
Browse files Browse the repository at this point in the history
Co-authored-by: Armand Philippot <[email protected]>
  • Loading branch information
thomasbnt and ArmandPhilippot authored Nov 6, 2024
1 parent 0ad7b9d commit be17ec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/docs/fr/guides/markdown-content.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,9 @@ Assurez-vous de bien comprendre ces limitations avant d'implémenter ceci dans v

```astro title="src/pages/remote-example.astro"
---
// Exemple: Récupération du contenu Markdown depuis une API distante
// Exemple : Récupération du contenu Markdown depuis une API distante
// et le rendre au format HTML, au moment de l'exécution.
// Using "marked" (https://github.com/markedjs/marked)
// En utilisant "marked" (https://github.com/markedjs/marked)
import { marked } from 'marked';
const response = await fetch('https://raw.githubusercontent.com/wiki/adam-p/markdown-here/Markdown-Cheatsheet.md');
const markdown = await response.text();
Expand Down

0 comments on commit be17ec7

Please sign in to comment.