MCPcopy Create free account
hub / github.com/microsoft/typescript-go / writeMarkdownLink

Function writeMarkdownLink

internal/ls/hover.go:1085–1091  ·  view source on GitHub ↗
(b *strings.Builder, text string, uri string, quote bool)

Source from the content-addressed store, hash-verified

1083}
1084
1085func writeMarkdownLink(b *strings.Builder, text string, uri string, quote bool) {
1086 b.WriteString("[")
1087 writeQuotedString(b, text, quote)
1088 b.WriteString("](")
1089 b.WriteString(uri)
1090 b.WriteString(")")
1091}
1092
1093func writeOptionalEntityName(b *strings.Builder, name *ast.Node) {
1094 if name != nil {

Callers 2

writeJSDocLinkMethod · 0.85
writeNameLinkMethod · 0.85

Calls 1

writeQuotedStringFunction · 0.85

Tested by

no test coverage detected