format!("<pre aria-label=\"{alt_text}\">")
}
GeminiLine::PreformattedToggle(false, _) => "</pre>".to_string(),
- GeminiLine::Text(content, true) | GeminiLine::Quote(content) => content.to_string(),
+ GeminiLine::Text(content, true) | GeminiLine::Quote(content) => content
+ .replace('<', "<")
+ .replace('>', ">")
+ .to_string(),
}
}