Add support for alt-text in preformatted blocks #15

Merged
cadey merged 5 commits from :alt-text into main 2021-09-08 13:30:32 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 9bc2ea1159 - Show all commits

View File

@ -26,7 +26,7 @@ impl Builder {
self
}
pub fn preformatted<A, T>(mut self, alt_text: T, data: T) -> Builder
pub fn preformatted<A, T>(mut self, alt_text: A, data: T) -> Builder
where
A: Into<String>,
T: Into<String>,