Toggle menu
876
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Syntax Highligh: Difference between revisions

From Catglobe Wiki
Created page with 'This extension adds the <source> tag to present formatted source code On the wiki page, you can now use "source" elements:<source lang="php"> <?php $v = "string"; // sampl…'
 
No edit summary
Line 1: Line 1:
This extension adds the <source> tag to present formatted source code
This extension adds the <source> tag to present formatted source code
On the wiki page, you can now use "source" elements:<source lang="php">
On the wiki page, you can now use "source" elements
<?php
<source lang="php">
    $v = "string";    // sample initialization
// your code here
?>
html text
<?
    echo $v;        // end of php code
?>
</source>
</source>
  [[category:Wiki guidelines]]
  [[category:Wiki guidelines]]

Revision as of 09:23, 25 November 2009

This extension adds the

 tag to present formatted source code
On the wiki page, you can now use "source" elements
<source lang="php">
// your code here