Translations:Typographical Guidelines/21/fr: Difference between revisions

From KDE UserBase Wiki
(Created page with " * Vous pouvez aussi combiner les zones de saisie/et d'affichage avec [http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi GeSHi syntaxhiglighting]. An input area l...")
 
No edit summary
Line 1: Line 1:
* Vous pouvez aussi combiner les zones de saisie/et d'affichage avec [http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi GeSHi syntaxhiglighting]. Une zone de saisie comme celle-là  {{Input|1=<nowiki>{{Input|<syntaxhighlight lang="php" line>
* Vous pouvez aussi combiner les zones de saisie/et d'affichage avec [http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi GeSHi syntaxhiglighting]. An input area like this {{Input|1=<nowiki>{{Input|<syntaxhighlight lang="php" line>
# Initialisation du code commun
# Initialisation du code commun
$preIP = dirname( __FILE__ );
$preIP = dirname( __FILE__ );

Revision as of 21:29, 18 March 2018

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Typographical Guidelines)
* You can also combine input/output areas with [http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi GeSHi syntaxhiglighting]. An input area like this {{Input|1=<nowiki>{{Input|<syntaxhighlight lang="php" line>
# Initialise common code
$preIP = dirname( __FILE__ );
require_once( "$preIP/includes/WebStart.php" );
</syntaxhighlight>}}</nowiki>
}} will result in {{Input|<syntaxhighlight lang="php" line>
# Initialise common code
$preIP = dirname( __FILE__ );
require_once( "$preIP/includes/WebStart.php" );
</syntaxhighlight>}}
  • Vous pouvez aussi combiner les zones de saisie/et d'affichage avec GeSHi syntaxhiglighting. Une zone de saisie comme celle-là
    {{Input|<syntaxhighlight lang="php" line>
    # Initialisation du code commun
    $preIP = dirname( __FILE__ );
    require_once( "$preIP/includes/WebStart.php" );
    </syntaxhighlight>}}
    affichera
    # Initialisation du code commun
    $preIP = dirname( __FILE__ );
    require_once( "$preIP/includes/WebStart.php" );