aboutsummaryrefslogtreecommitdiff
path: root/src/gemtext/gemtext.gleam
blob: a1dd3a5e0b2573cedaceca56b2865ec106b4cd0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gleam/option.{type Option}

pub type Gemtext {
  Text(String)
  Link(to: String, Option(String))
  Heading(String, depth: Int)
  ListLine(String)
  List(List(List(String)))
  BlockquoteLine(String)
  Blockquote(String)
  Preformatted(description: Option(String), body: String)
  PreformattedLine(String)
  Whitespace
}