enum class markdown::LineBreakRendering

sys::Obj
  sys::Enum
    markdown::LineBreakRendering

@Js
@Serializable { simple=true }

Source

LineBreakRendering

compact

const static LineBreakRendering compact := ...

Source

Use single line breaks between blocks, not a blank line. Also renderes all lists as tight

fromStr

static new fromStr(Str name, Bool checked := true)

Source

Return the LineBreakRendering instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.

separate_blocks

const static LineBreakRendering separate_blocks := ...

Source

Separate blocks by a blank line (and respect tight vs loose lists)

strip

const static LineBreakRendering strip := ...

Source

Strip all line breaks within blocks and between blocks, resulting in all the text on a single line.

vals

const static LineBreakRendering[] vals := ...

Source

List of LineBreakRendering values indexed by ordinal