Custom Markdown Table
fun CustomMarkdownTable(content: String, node: ASTNode, style: TextStyle, annotatorSettings: AnnotatorSettings = annotatorSettings(), headerBlock: @Composable (String, ASTNode, Dp, TextStyle) -> Unit = { content, header, tableWidth, style ->
CustomMarkdownTableHeader(
content = content,
header = header,
tableWidth = tableWidth,
style = style,
annotatorSettings = annotatorSettings,
)
}, rowBlock: @Composable (String, ASTNode, Dp, TextStyle) -> Unit = { content, header, tableWidth, style ->
CustomMarkdownTableRow(
content = content,
header = header,
tableWidth = tableWidth,
style = style,
annotatorSettings = annotatorSettings,
)
})