We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 367daaf commit 16bab41Copy full SHA for 16bab41
src/challenge.rs
@@ -125,6 +125,9 @@ impl TagHandler for ImgHandler {
125
let src = get_tag_attr(tag, "src").unwrap_or_default();
126
let alt = get_tag_attr(tag, "alt");
127
128
+ console_debug!("SRC image content: {src}");
129
+ console_debug!("ALT image content: {alt:?}");
130
+
131
if let Some(alt) = alt {
132
printer.append_str(&format!("", alt, &src));
133
} else {
0 commit comments