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

From KDE UserBase Wiki
(Created page with "* Ви також можете поєднувати області input та output за допомогою [http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi під...")
 
(No difference)

Latest revision as of 15:08, 13 June 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>}}
  • Ви також можете поєднувати області input та output за допомогою підсвічування синтаксичних конструкцій GeSHi. Область input, подібну до такої:
    {{Input|<syntaxhighlight lang="php" line>
    # Initialise common code
    $preIP = dirname( __FILE__ );
    require_once( "$preIP/includes/WebStart.php" );
    </syntaxhighlight>}}
    буде показано так:
    # Initialise common code
    $preIP = dirname( __FILE__ );
    require_once( "$preIP/includes/WebStart.php" );