## Example ```golang fmt.Sprintf(` This is a %s `, "test case") ``` Syntax highlighting does not correctly highlight the format string as expected. ```golang fmt.Sprintf("This is a %s", "test case") ``` Will highlight the format string as expected.
Example
Syntax highlighting does not correctly highlight the format string as expected.
Will highlight the format string as expected.