Skip to content

Commit

Permalink
fix(interactive-example): missing quote at start of height attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoMcA committed Feb 5, 2025
1 parent 5da9e0a commit a65428c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub fn interactive_example(name: String, height: Option<String>) -> Result<Strin
let height = height
.map(|height| {
concat_strs!(
r#" height="#,
r#" height=""#,
&encode_double_quoted_attribute(&height).as_ref(),
r#"""#
)
Expand Down

0 comments on commit a65428c

Please sign in to comment.