Skip to content

Latest commit

 

History

History
99 lines (63 loc) · 1.32 KB

slides.md

File metadata and controls

99 lines (63 loc) · 1.32 KB
marp theme class paginate header footer
true
cybertopia
invert
true
**Marp presentation example** - **Alexandre ZANNI** aka **noraj**
30/09/204 - XYZCon 2024

noraj theme


Sub-title

Hello, world!


emoji

😃💎💎❤️🔥


image filters

blur:10px brightness:1.5 opacity:.5 grayscale hue-rotate:180deg invert:100%


background image

bg


bg left:33%

split background


bg vertical bg bg


Bullet list

  • One
  • Two
  • Three

Fragmented list

  • One
  • Two
  • Three

bold italic

link: https://github.com/noraj

blockquote Lorem ipsum dolor sit amet, consectetur adipiscing elit.

  1. First item
  2. 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