CaptionPositionInfo
data class CaptionPositionInfo(val default: CaptionPosition = CaptionPosition.BOTTOM, val figures: CaptionPosition? = null, val tables: CaptionPosition? = null, val codeBlocks: CaptionPosition? = null)
Immutable information about the position of captions of com.quarkdown.core.ast.quarkdown.CaptionableNode nodes in a document.
Parameters
default
default relative position of captions
figures
position of captions for com.quarkdown.core.ast.quarkdown.block.Figure, if different from the default
tables
position of captions for com.quarkdown.core.ast.base.block.Table, if different from the default
codeBlocks
position of captions for com.quarkdown.core.ast.base.block.Code, if different from the default
Constructors
Link copied to clipboard
constructor(default: CaptionPosition = CaptionPosition.BOTTOM, figures: CaptionPosition? = null, tables: CaptionPosition? = null, codeBlocks: CaptionPosition? = null)