forked from GandalfUK/godoc2ghmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
protobuf.go
65 lines (56 loc) · 1.52 KB
/
protobuf.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package main
import (
"fmt"
"strings"
)
func fmtProtobufDoc(doc string) string {
prelude := ""
didProtoFiles := false
protoFiles := ""
hasProtoTLMPrelude := false
didProtoTLM := false
protoTLM := ""
other := ""
lines := strings.Split(doc, "\n")
for _, line := range lines {
trimmed := strings.TrimSpace(line)
if !didProtoFiles && strings.Contains(line, *protobufPreludeMatcher) {
trimmed := strings.Replace(trimmed, "protocol buffer", "[Protobuf](https://developers.google.com/protocol-buffers/)-compatible", 1)
protoFiles += "**" + trimmed + "**\n\n"
continue
}
if !didProtoFiles && protoFiles != "" {
if trimmed == "" {
continue
}
if strings.Contains(trimmed, *protobufFilesMatcher) {
protoFiles += trimmed + "\n\n"
continue
}
if !strings.Contains(trimmed, *protobufMessagesMatcher) {
protoFiles += fmt.Sprintf("- [%s](./%s)\n", trimmed, trimmed)
continue
}
hasProtoTLMPrelude = true
didProtoFiles = true
continue
}
if !didProtoTLM && hasProtoTLMPrelude {
if trimmed == "" {
didProtoTLM = true
continue
}
protoTLM += fmt.Sprintf("- [%s](#%s)\n", trimmed, trimmed)
continue
}
if !didProtoFiles && !didProtoTLM {
prelude += line + "\n"
} else {
other += line + "\n"
}
}
if protoTLM != "" {
protoTLM = "It has these top-level [Protobuf](https://developers.google.com/protocol-buffers/)-compatible message types:\n\n" + protoTLM + "\n"
}
return strings.TrimSpace(prelude + "\n" + other + "\n" + protoFiles + "\n" + protoTLM)
}