Personal tools

Difference between revisions of "Syntax highlighter"

From MohidWiki

Jump to: navigation, search
(Syntax)
(Syntax)
Line 6: Line 6:
 
{|
 
{|
 
|  
 
|  
  <code> &lt;htm&gt;&lt;pre name="code" class="ruby"&gt;
+
  &lt;htm&gt;&lt;pre name="code" class="ruby"&gt;
  File.open("sample.txt", "r") { |fs|
+
  File.open("sample.txt", "r") { |fs|  
    
+
   while line = fs.gets   
    while line = fs.gets   
+
    if line.match(pattern)   
      if line.match(pattern)   
+
      puts "Line read was '#{line.chomp}'.\n"
        puts "Line read was '#{line.chomp}'.\n"
+
    end
      end
+
  end
    end
+
  fs.close
    fs.close
+
  }
  }
 
 
  &lt;/pre&gt;&lt;/htm&gt;
 
  &lt;/pre&gt;&lt;/htm&gt;
</code>
 
 
||
 
||
 
<htm><pre name="code" class="ruby">
 
<htm><pre name="code" class="ruby">

Revision as of 00:18, 13 December 2008

This wiki allows to embed code with syntax highlighting.

Syntax

Simply add in the wiki article edit box this code:

<htm><pre name="code" class="ruby">
File.open("sample.txt", "r") { |fs|   
  while line = fs.gets  
    if line.match(pattern)  
      puts "Line read was '#{line.chomp}'.\n"
    end
  end
  fs.close
}
</pre></htm>
 File.open("sample.txt", "r") { |fs|  
   
    while line = fs.gets  
      if line.match(pattern)  
         puts "Line read was '#{line.chomp}'.\n"  
      end  
    end  
    fs.close  
 }  

Installation procedure for mediawiki

First, download and untar inside your wiki root folder the syntax highlighter code. Then, simply add the following code snippets in your monobook.php file.








        



























That's it! You can now test to see if it worked ...

External references