buildBibliographyContent
fun <E : BibliographyEntry> buildBibliographyContent(entry: E, block: BibliographyEntryContentBuilder<E>.(E) -> Unit): InlineContent
Builds content for a BibliographyEntryContentProviderStrategy.
Example usage:
buildBibliographyContent(entry) {
authors
", " then it.title
", " and it.journal.emphasized
".".just
}
Content copied to clipboard
Return
the built InlineContent AST
Parameters
entry
the bibliography entry to build content for
block
the DSL block to define the content structure