Folio.Content.LocalSet (Folio v0.2.3)

Copy Markdown View Source

Local style overrides for a content block. Mirrors Typst's #set text(...) within a scope.

Fields:

  • body — child content
  • hyphenate — override text hyphenation for this block
  • justify — override paragraph justification
  • first_line_indent — override first-line indent (nil = no change)

Summary

Types

t()

@type t() :: %Folio.Content.LocalSet{
  body: [Folio.Content.t()],
  first_line_indent: float() | nil,
  hyphenate: boolean() | nil,
  justify: boolean() | nil
}