Annotations
Bold

Bold

All the text formatted as bold will be rendered using <strong /> tag, anywhere in the document.

The element receives text and key as parameter and should return node type value.

ℹ️

Node Type Value is anything that can be rendered: numbers, strings, elements or an array.

Pre-Defined Syntax

	annotations: {
		bold: (text, key) => (
			<strong key={key}>
				{text}
			</strong>
		),
	}