How-to: Difference between revisions

From B-Wiki
Jump to navigation Jump to search
mNo edit summary
Line 5: Line 5:
{| class="wikitable"  
{| class="wikitable"  
|-
|-
! <syntaxhighlight>
! Code
! Output
|-
| <syntaxhighlight>
{{Shortcut|botland.png|botland.com.pl|Botland store}}
{{Shortcut|botland.png|botland.com.pl|Botland store}}
</syntaxhighlight>
</syntaxhighlight>
!
|
{{Shortcut|botland.png|botland.com.pl|Botland store}}
{{Shortcut|botland.png|botland.com.pl|Botland store}}
|}
|}

Revision as of 12:49, 1 December 2021

Templates

Shortcuts

Code Output
<syntaxhighlight>
  • Botland store
  • </syntaxhighlight>

  • Botland store
  • 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>