<p>I was looking at the source of the <code>testing</code> package and found </p>
<pre><code>``go help test''
</code></pre>
<p>is shown in the godoc as "go help test" with proper quotes. I didn't find this behavior documented anywhere. Am I missing something obvious or should I file a bug to mention this feature somewhere?</p>
<p>Refer:</p>
<p><a href="https://github.com/golang/go/blob/master/src/testing/testing.go#L17-18">https://github.com/golang/go/blob/master/src/testing/testing.go#L17-18</a></p>
<p><a href="http://golang.org/pkg/testing/#pkg-overview">http://golang.org/pkg/testing/#pkg-overview</a></p>
<hr/>**评论:**<br/><br/>: <pre><p>[deleted]</p></pre>Ainar-G: <pre><p>False. It's documented exactly where you linked to:</p>
<blockquote>
<p>Each span of unindented non-blank lines is converted into a single paragraph. <em>There is one exception to the rule: a span that consists of a single line, is followed by another paragraph span, begins with a capital letter, and contains no punctuation is formatted as a heading.</em></p>
</blockquote>
<p>(Emphasis added.)</p></pre>ninja_uzumaki: <pre><p>Yeah, lots of minutiae are undocumented. Hope someone, may be <a href="/u/natefinch" rel="nofollow">/u/natefinch</a> (<a href="https://github.com/natefinch/godocgo" rel="nofollow">https://github.com/natefinch/godocgo</a>) can edit the documentation to specify them. </p></pre>natefinch: <pre><p>Yeah, I wish the documentation on godoc were better specified. There's a lot of things it does that you can really only figure out by using it and reading a lot of other people's documentation... like which docs get formatting and which don't... there's even plenty of stuff I missed in godocgo... like functions that return a type getting sorted under that type in the docs.</p></pre>Ainar-G: <pre><p>Good find! I haven't found any mention of this either. This might mean it's worth opening an issue.</p></pre>dominikh: <pre><p>`` and '' translate to u201c and u201d respectively. They're not ordinary quotes. I can't tell you where it's documented, but it's a feature, not a bug.</p></pre>ninja_uzumaki: <pre><p>I meant should I file a bug to document this feature somewhere?</p></pre>