You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gary Burd edited this page Feb 23, 2015
·
5 revisions
Package documentation pages automatically link identifiers and file names to source code hosted on version control services known to GoDoc.org.
The go-source meta tag is used to specify links to source code on services not known to GoDoc.org.
The go-source meta tag is similar to the vanity path go-import meta tag and is specified in the same resource as the go-import meta tag.
The structure of the go-source meta tag is:
<meta name="go-source" content="prefix home directory file">
The prefix field is the import path corresponding to the repository root.
The home field is the URL of the repository's home page.
The directory field is a URL template for a page listing the files in the
package. The following substitutions are made in the directory template:
{dir} - The import path with prefix and leading "/" trimmed.
{/dir} - If {dir} is not the empty string, then {/dir} is replaced by "/" +
{dir}. Otherwise, {/dir} is replaced with the empty string.
The file field is a URL template for a link to a line in a source file. The
following substitutions are made in the file template:
{file} - The name of the file
{line} - The decimal line number.
The meta tag content attribute must contain four fields. Use "_" to fallback to
GoDoc.org's defaults for home, directory and file.
Here's an example of the go-import and go-source meta tags for the
gopkg.in/yaml.v2 package: