marp | theme | class | paginate | header | footer |
---|---|---|---|---|---|
true |
cybertopia |
invert |
true |
**Marp presentation example** - **Alexandre ZANNI** aka **noraj** |
30/09/204 - XYZCon 2024 |
Hello, world!
😃💎💎❤️🔥
image filters
background image
split background
- One
- Two
- Three
- One
- Two
- Three
bold italic
link: https://github.com/noraj
blockquote Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- First item
- Second item
code, Ruby
# 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