Skip to content

Commit

Permalink
remove the special characters that are slugified with words
Browse files Browse the repository at this point in the history
  • Loading branch information
JeSuisUnCaillou committed Nov 21, 2024
1 parent 7c4f37d commit a976818
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/api/apiDescription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const ApiDescription: React.FC<{
<div style={{backgroundColor: "#FFE9E6", color: "#B34000", padding: "1rem"}}>
<strong>⚠️ Ces informations ne sont plus mises à jour depuis le 06/09/2024.</strong><br />
Le site API.gouv.fr va progressivement être fusionné dans le catalogue unique data.gouv.fr. <br /><br />
Retrouvez la fiche d'information à jour de cette API sur la nouvelle page API de Data.gouv.fr <a href={`https://data.gouv.fr/fr/dataservices/${slugify(title)}`} target="_blank" rel="noopener noreferrer">⇢ Consulter la fiche à jour</a>
Retrouvez la fiche d'information à jour de cette API sur la nouvelle page API de Data.gouv.fr <a href={`https://data.gouv.fr/fr/dataservices/${slugify(title.replace(/[|&$%<>]/g, ""))}`} target="_blank" rel="noopener noreferrer">⇢ Consulter la fiche à jour</a>
</div>

{content_intro && <RichReactMarkdown source={content_intro} />}
Expand Down
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a976818

Please sign in to comment.