createNode method
Node
createNode(
- InlineParser parser,
- String destination,
- String? title, {
- required List<
Node> getChildren(),
Create the node represented by a Markdown link.
Implementation
Node createNode(InlineParser parser, String destination, String? title,
{required List<Node> Function() getChildren}) {
var children = getChildren();
var element = Element('a', children);
element.attributes['href'] = escapeAttribute(destination);
if (title != null && title.isNotEmpty) {
element.attributes['title'] = escapeAttribute(title);
}
return element;
}