Closed
Description
I literally copied godot/tests/docs.rs into a new project and got this:
The quotes are "double"-escaped because of Rust string literals:
gdext/godot-macros/src/docs.rs
Lines 113 to 123 in 90d8064
Can probably be fixed with litrs:
.flat_map(|doc| {
doc.into_iter().map(|x| {
litrs::StringLit::parse(x.to_string()).unwrap().value().to_string()
})
})
but not sure adding a new dependency is a good idea