OrgPreamble

@Serializable
data class OrgPreamble(val title: OrgLine, val author: String? = null, val email: String? = null, val date: LocalDate? = null, val category: String? = null, val filetags: OrgTags? = null, val tags: OrgTags? = null, val options: OrgOptions? = null, val pile: OrgOptions? = null, val properties: OrgProperties? = null, var tokens: List<Token>) : OrgElem

Preamble is everything that comes in the start before the actual content starts

Constructors

Link copied to clipboard
constructor(title: OrgLine, author: String? = null, email: String? = null, date: LocalDate? = null, category: String? = null, filetags: OrgTags? = null, tags: OrgTags? = null, options: OrgOptions? = null, pile: OrgOptions? = null, properties: OrgProperties? = null, tokens: List<Token>)

Properties

Link copied to clipboard
val author: String? = null
Link copied to clipboard
val category: String? = null
Link copied to clipboard
val date: LocalDate? = null
Link copied to clipboard
val email: String? = null
Link copied to clipboard
val filetags: OrgTags? = null
Link copied to clipboard
val options: OrgOptions? = null
Link copied to clipboard
val pile: OrgOptions? = null
Link copied to clipboard
Link copied to clipboard
val tags: OrgTags? = null
Link copied to clipboard
Link copied to clipboard
open override var tokens: List<Token>