I want to include some example codes in my comment for a function, like this:
// Some example for using `foo`:
//
// ```
// f := Foo(...)
// g := Goo(f)
// ```
func Foo() {
...
}
But the code block is not displayed properly in vscode. What is the proper way to do it?