• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Comment chnager la liste FindChangeList SCRIPT

New Here ,
Dec 10, 2024 Dec 10, 2024

Copy link to clipboard

Copied

Bonjour,
pouvez-vous me dire si cette liste est bonne. Je voulu integrer des règles typographique françaisse mais rien ne se passent quad je glisse cette liste dans le finder. (La liste est en pièce jointe)

MERCI.



//LISTE DE CODE RECHERCHER/REMPLACER POUR NETTOYER UN TEXTE
//Le double-slash en début de ligne sert à désactiver ladite ligne en syntaxe JavaScript.
//---------------------------------------------------------------
//
//NETTOYAGE DES ESPACES
{findText:"^S"} {changeText:" "} once Remplace espace-insécable par espace.
{findText:"^s"} {changeText:" "} once Remplace espace-insécable (chasse fixe) par espace.
{findText:"^|"} {changeText:" "} once Remplace espace-ultra-fine par espace.
{findText:"^%"} {changeText:" "} once Remplace sixième-d'espace par espace.
{findText:"^<"} {changeText:" "} once Remplace espace-fine par espace.
{findText:"^4"} {changeText:" "} once Remplace quart-d'espace par espace.
{findText:"^3"} {changeText:" "} once Remplace tiers-d'espace par espace.
{findText:"^."} {changeText:" "} once Remplace espace-de-ponctuation par espace.
{findText:"^/"} {changeText:" "} once Remplace espace-de-lisibilité par espace.
{findText:"^f"} {changeText:" "} once Remplace espace-sans-alinéa par espace.
//
//AJOUT D'ESPACES DEVANT TOUTES LES PONCTUATIONS
{findText:":"} {changeText:" :"} once Remplace deux-point par espace-deux-points.
{findText:"%"} {changeText:" %"} once Remplace pourcentage par espace-pourcentage.
{findText:";"} {changeText:" ;"} once Remplace point-virgule par espace-point-virgule.
{findText:"?"} {changeText:" ?"} once Remplace point d'interrogation par espace-point d'interrogation.
{findText:"!"} {changeText:" !"} once Remplace point d'exclamation par espace-point d'exclamation.
{findText:","} {changeText:" ,"} once Remplace virgule par espace-virgule.
{findText:"."} {changeText:" ."} once Remplace point par espace-point.
{findText:"«"} {changeText:"« "} once Remplace guillemet-ouvrant par guillemet-ouvrant-espace.
{findText:"»"} {changeText:" »"} once Remplace guillemet-fermant par espace-guillemet-fermant.
{findText:"("} {changeText:"( "} once Remplace parenthèse-ouvrante par parenthèse-ouvrante-espace.
{findText:")"} {changeText:" )"} once Remplace parenthèse-fermante par espace-parenthèse-fermante.
{findText:"{"} {changeText:"{ "} once Remplace accolade-ouvrante par accolade-ouvrante-espace.
{findText:"}"} {changeText:" }"} once Remplace accolade-fermante par espace-accolade-fermante.
{findText:"["} {changeText:"[ "} once Remplace crochet-ouvrant par crochet-ouvrant-espace.
{findText:"]"} {changeText:" ]"} once Remplace crochet-fermant par espace-crochet-fermant.
//
//DEDOUBLONNAGE
{findText:" "} {changeText:" "} all Remplace en boucle double-espace par espace-seule.
{findText:"^t^t"} {changeText:"^t"} all Remplace en boucle double-tabulation par tabulation-seule.
{findText:"^p^p"} {changeText:"^p"} all Remplace en boucle double-fin de paragraphe par fin de paragraphe-seule.
{findText:"^S "} {changeText:" "} all Remplace en boucle double-espace par espace-seule.
//
//NETTOYAGE DES PONCTUATIONS
{findText:" :"} {changeText:"^<:"} once Remplace espace-deux-point par espace-fine-deux-points.
{findText:" %"} {changeText:"^|%"} once Remplace espace-pourcentage par espace-ultrafine-pourcentage.
{findText:" ;"} {changeText:"^<;"} once Remplace espace-point-virgule par espace-fine-point-virgule.
{findText:" ?"} {changeText:"^<?"} once Remplace espace-point d'interrogation par espace fine-point d'interrogation.
{findText:" !"} {changeText:"^<!"} once Remplace espace-point d'exclamation par espace fine-point d'exclamation.
{findText:" ,"} {changeText:","} once Remplace espace-virgule par virgule-seule.
{findText:" ."} {changeText:"."} once Remplace espace-point par point-seul.
{findText:"« "} {changeText:"«^<"} once Remplace guillemet-ouvrant-espace par guillemet-ouvrant-espace-fine.
{findText:" »"} {changeText:"^<»"} once Remplace espace guillemet-fermant par espace-fine-guillemet-fermant.
{findText:"( "} {changeText:"("} once Remplace parenthèse-ouvrante-espace par parenthèse-ouvrante
{findText:" )"} {changeText:")"} once Remplace espace parenthèse-fermante par parenthèse-fermante.
{findText:"{ "} {changeText:"{"} once Remplace accolade-ouvrante-espace par accolade-ouvrante
{findText:" }"} {changeText:"}"} once Remplace espace accolade-fermante par accolade-fermante.
{findText:"[ "} {changeText:"["} once Remplace crochet-ouvrant-espace par crochet.
{findText:" ]"} {changeText:"]"} once Remplace espace crochet-fermant par crochet-fermant.
{findText:"https^<:"} {changeText:"https:"} once Supprime l'espace fine dans URL
{findText:"http^<:"} {changeText:"https:"} once Supprime l'espace fine dans URL
{findText:"ftp^<:"} {changeText:"https:"} once Supprime l'espace fine dans URL
//
//NETTOYAGE DU RESTE
{findText:"^p "} {changeText:"^p"} once Remplace fin de paragraphe-espace par fin de paragraphe-seule.
{findText:" ^p"} {changeText:"^p"} once Remplace espace-fin de paragraphe par fin de paragraphe-seule.
{findText:"^p^t"} {changeText:"^p"} once Remplace fin de paragraphe-tabulation par fin de paragraphe-seule.
//
//OPTIONEL
//{findText:" - "} {changeText:"^="} once Remplace espace-tiret-espace par un demi-cadratin (en-dash).
//{findText:"--"} {changeText:"^_"} once Remplace double-tiret par un cadratin (em-dash).
//{findText:". "} {changeText:".^m"} once Remplace point-espace par point-cadratin.
//

TOPICS
Feature request , Feature requests

Views

23

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 10, 2024 Dec 10, 2024

Copy link to clipboard

Copied

LATEST

Is this intended for InDesign? If it is, you are in the wrong forum!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines