Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(internal/godocfx): handle Markdown content #3816

Merged
merged 9 commits into from Mar 15, 2021
Merged
2 changes: 2 additions & 0 deletions third_party/go/doc/comment.go
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build go1.16
codyoss marked this conversation as resolved.
Show resolved Hide resolved

// Godoc comment extraction and comment -> HTML formatting.

package doc
Expand Down
2 changes: 2 additions & 0 deletions third_party/go/doc/comment_test.go
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build go1.16

package doc

import (
Expand Down
2 changes: 2 additions & 0 deletions third_party/go/doc/doc.go
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build go1.16

// Package doc extracts source code documentation from a Go AST.
package doc

Expand Down
2 changes: 2 additions & 0 deletions third_party/go/doc/example.go
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build go1.16

// Extract example functions from file ASTs.

package doc
Expand Down
2 changes: 2 additions & 0 deletions third_party/go/doc/example_test.go
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build go1.16

package doc_test

import (
Expand Down
2 changes: 2 additions & 0 deletions third_party/go/doc/exports.go
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build go1.16

// This file implements export filtering of an AST.

package doc
Expand Down
2 changes: 2 additions & 0 deletions third_party/go/doc/filter.go
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build go1.16

package doc

import "go/ast"
Expand Down
2 changes: 2 additions & 0 deletions third_party/go/doc/reader.go
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build go1.16

package doc

import (
Expand Down
2 changes: 2 additions & 0 deletions third_party/go/doc/synopsis.go
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build go1.16

package doc

import (
Expand Down
2 changes: 2 additions & 0 deletions third_party/go/doc/synopsis_test.go
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build go1.16

package doc

import "testing"
Expand Down