How-to: Difference between revisions
Jump to navigation
Jump to search
| Line 9: | Line 9: | ||
|- | |- | ||
| <syntaxhighlight> | | <syntaxhighlight> | ||
{{Shortcut|https:// | {{Shortcut|botland.png|https://botland.com.pl|Botland store}} | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| | | | ||
{{Shortcut|https:// | {{Shortcut|botland.png|https://botland.com.pl|Botland store}} | ||
|} | |} | ||
Revision as of 13:28, 1 December 2021
Templates
Shortcuts
| Code | Output |
|---|---|
| <syntaxhighlight>
</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>
- 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>

