Error in user YAML: Alias parsing is not enabled.
---
# Metadata
title: &title New Codestar Marp theme
author: Hamza Haiken
header: *title # Header set to the same value as the title, can be changed if needed
footer: Example slides
# Appearance
# Uncomment for dark mode
# class: invert
transition: wipe
# Don't change
marp: true
theme: codestar
paginate: true
math: mathjax
---
Scan to follow along or keep the link for later:
Link to the slides
Optional sub-title
A slide with a split background
It can also go to the right
When showing pictures:
- Show it in full screen, talk over it a bit
- Then on the next slide
- Show the same picture again but fadeed
- Put your talking points
- It makes for a nice effect and people can still see what you're talking about
Here are some bullets:
- One
- A
- B
- Two
- Three
And numbered:
- Foo
- Bar
- Baz
Here are some incremental bullets:
- One
- Two
- Three
And numbered:
- Foo
- Bar
- Baz
bold! italic! emoji codes: 📡 🦦
link: https://github.com/code-star
Someone once said something:
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- First item
- Second item
With a different transition
Some code
# 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
Double
// The Greeter class
case class Greeter(name: String) {
private val capitalizedName =
name.capitalize
def salute(): Unit = {
println(s"Hello $capitalizedName!")
}
}
val g = Greeter("world")
g.salute()
code!
# The Greeter class
class Greeter:
def __init__(self, name):
self.name = name.capitalize()
def salute(self):
print(f"Hello {self.name}!")
g = Greeter("world")
g.salute()
Inline math:
Math block:
Wow.
Basic:
foo | bar |
---|---|
baz | bim |
Alignments:
Syntax | Description | Test Text |
---|---|---|
Header | Title | Here's this |
Paragraph | Text | And more |