theme | layout | background | themeConfig | ||
---|---|---|---|---|---|
./ |
cover |
2 |
|
Presentation subtitle
Slide Subtitle
- Slide bullet text
- Slide bullet text
- Slide bullet text
- Slide bullet text
- Slide bullet text
layout: image-right image: https://source.unsplash.com/collection/94734566/1920x1080
Colons can be used to align columns.
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
Fact information
Attribution
layout: image-left image: https://source.unsplash.com/collection/94734566/1920x1080
interface User {
id: number
firstName: string
lastName: string
role: string
}
function updateUser(id: number, update: Partial<User>) {
const user = getUser(id)
const newUser = {...user, ...update}
saveUser(id, newUser)
}