I'm trying to add an inline code, i.e. this, into a doc.go file for gomarkdoc to pickup, but it is escaping the backtick characters.
// `this` is an example
package applesauce
Becomes
Instead of
Is there some way to mask special characters like backtick so they aren't escaped?
I'm trying to add an inline code, i.e.
this, into adoc.gofile for gomarkdoc to pickup, but it is escaping the backtick characters.Becomes
Instead of
Is there some way to mask special characters like backtick so they aren't escaped?