///|
pub fn BrandBook::render_html_theme_panel(self : BrandBook) -> String {
  let catalog = TokenCatalog::from_brand_book(self)
  let stats = catalog.stats()
  "

Theme tokens

" + stats.total.to_string() + " tokens; " + stats.documentation_rate().to_string() + "% documented.

" + "
" +
  escape_html(self.to_theme_json()) +
  "
" } ///| pub fn BrandBook::render_html_accessibility_panel(self : BrandBook) -> String { "

Accessibility

" + escape_html(self.to_accessibility_markdown()) + "
" } ///| pub fn BrandBook::render_html_manifest_panel(self : BrandBook) -> String { "

Exports

" +
  escape_html(self.export_manifest_json()) +
  "
" }