Skip to content
/ docs Public
forked from withastro/docs

Commit

Permalink
i18n(fr): Fix broken reference links in Markdown content guide from w…
Browse files Browse the repository at this point in the history
…ithastro#8749

Signed-off-by: Thomas Bonnet <[email protected]>
  • Loading branch information
thomasbnt committed Jul 8, 2024
1 parent 1430714 commit 1d4a83a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/content/docs/fr/guides/markdown-content.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ export default defineConfig({

Pour personnaliser un plugin, il faut lui fournir un objet `options` dans un tableau imbriqué.

L'exemple ci-dessous ajoute [l'option de titres au plugin `remarkToc`](https://github.com/remarkjs/remark-toc#optionsheading) pour modifier l'emplacement de la table des matières, et [l'option `behavior` au plugin `rehype-autolink-headings`](https://github.com/rehypejs/rehype-autolink-headings#optionsbehavior) afin d'ajouter la balise d'ancrage après le texte du titre.
L'exemple ci-dessous ajoute [l'option de titres au plugin `remarkToc`](https://github.com/remarkjs/remark-toc#options) pour modifier l'emplacement de la table des matières, et [l'option `behavior` au plugin `rehype-autolink-headings`](https://github.com/rehypejs/rehype-autolink-headings#options) afin d'ajouter la balise d'ancrage après le texte du titre.

```js title="astro.config.mjs"
import remarkToc from 'remark-toc';
Expand All @@ -466,10 +466,10 @@ export default {
### Modifier le frontmatter par un programme

:::note
Si vous utilisez des [collections de contenus](/fr/guides/content-collections/), veuillez consulter ["Modifier le frontmatter avec Remark "](/fr/guides/content-collections/#modifier-le-frontmatter-avec-remark).
Si vous utilisez des [collections de contenus](/fr/guides/content-collections/), veuillez consulter ["Modifier le frontmatter avec Remark ](/fr/guides/content-collections/#modifier-le-frontmatter-avec-remark).
:::

Vous pouvez ajouter des propriétés frontmatter à tout vos fichiers Markdown et MDX en utilisant un [plugin remark ou rehype](#plugins-markdown).
Vous pouvez ajouter des propriétés frontmatter à tous vos fichiers Markdown et MDX en utilisant un [plugin remark ou rehype](#plugins-markdown).

<Steps>
1. Ajoutez un `customProperty` à la propriété `data.astro.frontmatter` de l'argument `file` de votre plugin :
Expand Down

0 comments on commit 1d4a83a

Please sign in to comment.