/// You can use the following template to document your function:
///
/// ```text
/// This function does things.
/// ```text
/// inner block of text
/// ```
/// It is a cool function.
/// ```
///
/// When using the template above, be sure to yada yada…
(How) can I achieve this?
What I've Tried
The r#"foo"# syntax. It does not seem to exist for triple-backticks.
Escaping a backtick of the inner triple-backtick pair. This “works” in that it doesn't break rustdoc, but renders a backslash, which I'd like to avoid.
Try using a different code fence for either one of the two blocks:
/// You can use the following template to document your function:
///
/// ~~~text
/// This function does things.
/// ```text
/// inner block of text
/// ```
/// It is a cool function.
/// ~~~
///
/// When using the template above, be sure to yada yada…