Test

Test of a Quarto Reveal.js presentation with a Mermaid.js diagram

Niccolò Maltoni

Example 1

classDiagram
  class Light {
    on()
    off()
    dim()
  }

Example 2

Composition

classDiagram
  Car *-- Engine

Inheritance

classDiagram
  Shape <|-- Circle
  Shape <|-- Square
  Shape <|-- Triangle