Skip to content

Commit

Permalink
Merge pull request #1401 from betagouv/improve_slugification
Browse files Browse the repository at this point in the history
remove the special characters that are slugified with words
  • Loading branch information
JeSuisUnCaillou authored Nov 21, 2024
2 parents 7c4f37d + a976818 commit ec4fe98
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 ec4fe98

Please sign in to comment.