export fn error_html(base_decl: Decl.Index, error_identifier: ErrorIdentifier) String
export fn error_html(base_decl: Decl.Index, error_identifier: ErrorIdentifier) String { string_result.clearRetainingCapacity(); error_identifier.html(base_decl, &string_result) catch @panic("OOM"); return String.init(string_result.items); }