This repository has been archived by the owner on Oct 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
List_Kind_Delimiter_Item
mattt edited this page Feb 7, 2020
·
1 revision
public final class Item: Node
public convenience init(delimiter: Delimiter = .none, children: [List.Item] = [])
public convenience init(children: [Block & Node] = [])
public convenience init(children: [Inline & Node] = [])
var kind: Kind
var cmark_node_type: cmark_node_type
Whether the list is loose.
var loose: Bool
From the CommonMark Spec:
A list is loose if any of its constituent list items are separated by blank lines, or if any of its constituent list items directly contain two block-level elements with a blank line between them. Otherwise a list is tight.
var delimiter: Delimiter
var cmark_node_type: cmark_node_type
Whether the list is tight.
var tight: Bool
Seealso:
loose
Generated at 2021-03-03T19:19:22+0000 using swift-doc 1.0.0-beta.5.
Types
- BlockQuote
- Code
- CodeBlock
- CommonMarkBuilder
- Document
- Document.Error
- Document.ParsingOptions
- Document.Position
- Emphasis
- ForEach
- Fragment
- HTMLBlock
- HardLineBreak
- Heading
- Image
- Link
- List
- List.Delimiter
- List.Item
- List.Kind
- Node
- Node.RenderingFormat
- Node.RenderingOptions
- Paragraph
- RawHTML
- Section
- SoftLineBreak
- StringBuilder
- Strong
- Text
- ThematicBreak
- VisitorContinueKind