renderIndex method

String renderIndex()

Implementation

String renderIndex() {
  String out = '';

  /// Output index information collected earlier.
  for (var MapEntry(:key, :value) in _indexHtml.entries) {
    out += '<h2>$key</h2>';
    out += value;
  }
  return out;
}