How-to: Difference between revisions

From B-Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
<div style="clear:right; float:right; margin-left: 10px">__TOC__</div>
<div style="clear:right; float:right; margin-left: 10px">__TOC__</div>
= Templates =
== Shortcuts ==
<syntaxhighlight>
{{Shortcut|botland.png|botland.com.pl|Botland store}}
</syntaxhighlight>
= Syntax highligher =
= Syntax highligher =



Revision as of 12:46, 1 December 2021

Templates

Shortcuts

<syntaxhighlight>

  • Botland store
  • </syntaxhighlight>

    Syntax highligher

    Current syntax highligher integration: Syntax highligher

    Highligher: highlight.js

    Sample code

    <syntaxhighlight> # The Greeter class class Greeter def initialize(name) @name = name.capitalize end def salute puts "Hello #{@name}!" end end g = Greeter.new("world") g.salute </syntaxhighlight>

    will result to

    <syntaxhighlight>

    1. The Greeter class

    class Greeter

     def initialize(name)
       @name = name.capitalize
     end
    
     def salute
       puts "Hello #{@name}!"
     end
    

    end

    g = Greeter.new("world") g.salute </syntaxhighlight>