I'd like to parse String::from("#value") into Rust codes using syn::quote_spanned or syn::quote
let value = String::from("Hello world");
quote! { String::from("#value") }
line:2 parses the #value directly, not to String::from("Hello World")
Is there any way to parse quotation mark in syn::quote or syn::quote_spanned?