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

From KDE TechBase
(Created page with "* Puoi anche combinare le aree input/output con [http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi l'evidenziazione della sintassi GeSHi]. Un'area input come questa {...")
 
(No difference)

Latest revision as of 18:25, 27 July 2011

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>}}
  • Puoi anche combinare le aree input/output con l'evidenziazione della sintassi GeSHi. Un'area input come questa
    {{Input|<syntaxhighlight lang="php" line>
    # Initialise common code
    $preIP = dirname( __FILE__ );
    require_once( "$preIP/includes/WebStart.php" );
    </syntaxhighlight>}}
    darà come risultato
    # Initialise common code
    $preIP = dirname( __FILE__ );
    require_once( "$preIP/includes/WebStart.php" );