goveal/examples/slides.md
Peter Kurfer 82a651cd5d
First draft of new fiber based server
- replaced previous net/http based muxer and all other components with fiber
- replaced polling with SSE to handle file changes
- auto-update custom stylesheets
- natively support mermaid diagrams
- handle custom element attributes for lists properly
- reload on config changes
- replace JS templating with actual JS code and an API
2021-12-22 11:52:02 +01:00

1.3 KiB

Markdown Demo

External 1.1

Content 1.1


External 1.2

Content 1.2

Note:

This will only display in the notes window.


List & fragments

  • unordered
  • list
  • with code
  • with bold text

Notes:

  • some other points only
  • in the nodes

List in HTML

  • List
  • with code
  • with bold text

External 2

Content 2.1


External 3.1

Content 3.1


External 3.2

Content 3.2


External 3.3

External Image


External 4.1

Local image


External 4.2

Google


Code

var i = 10;
for (var j = 0; j < i; j++) {
    Console.WriteLine($"{j}");
}

Mermaid

flowchart LR
   a --> b & c--> d

The inadequacy of a non-highlighted being

{line-numbers="1-2|3|4"}

    let a = 1;
let b = 2;
let c = x => 1 + 2 + x;
c(3);