toHtml method

String toHtml()

Implementation

String toHtml() {
  return '<article id=${getId()}>'
      '${Heading(title: name).toHtml()}'
      '${description.lines.map((e) => "<p>$e</p>").join()}'
      '</article>';
}