prost
prost copied to clipboard
square brackets are wrongly escaped in code blocks
// ```rust
// let a = vec![1];
// ```
message Test{}
Will become
/// ```rust
/// let a = vec!\[1\];
/// ```
#[derive(prost_helpers::AnyPB)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Test {
}
Good catch, would be good to fix this and write a test.
Has anyone worked on this yet? I'm happy to help.
@trasua go for it!