LineType::Quote => "<blockquote>".to_string(),
LineType::PreformattedText => {
if let Some(label) = &block_label {
- return format!("<pre role=\"img\" aria-label=\"h{}\">", label);
+ return format!("<pre role=\"img\" aria-label=\"{}\">", label);
} else {
return "<pre>".to_string();
}