-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathheading.go
More file actions
118 lines (96 loc) · 1.96 KB
/
Copy pathheading.go
File metadata and controls
118 lines (96 loc) · 1.96 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package hype
import (
"encoding/json"
"fmt"
"regexp"
"strconv"
"strings"
)
type Heading struct {
*Element
level int
}
func (h *Heading) MarshalJSON() ([]byte, error) {
if h == nil {
return nil, ErrIsNil("heading")
}
h.RLock()
defer h.RUnlock()
m, err := h.JSONMap()
if err != nil {
return nil, err
}
m["type"] = toType(h)
m["level"] = h.level
return json.MarshalIndent(m, "", " ")
}
func (h *Heading) MD() string {
x := strings.Repeat("#", h.level)
return fmt.Sprintf("%s %s", x, h.Children().MD())
}
func (h *Heading) Level() int {
return h.level
}
func (h *Heading) Format(f fmt.State, verb rune) {
switch verb {
case 'v':
if len(h.Filename) > 0 {
fmt.Fprintf(f, "file://%s: ", h.Filename)
}
fmt.Fprintf(f, "%s", h.String())
default:
fmt.Fprintf(f, "%s", h.String())
}
}
func NewHeading(el *Element) (*Heading, error) {
if el == nil {
return nil, ErrIsNil("element")
}
h := &Heading{
Element: el,
}
l := strings.ToLower(el.Atom().String())
l = strings.TrimPrefix(l, "h")
i, err := strconv.Atoi(l)
if err != nil {
return nil, err
}
h.level = i
return h, nil
}
func NewHeadingNodes(p *Parser, el *Element) (Nodes, error) {
h, err := NewHeading(el)
if err != nil {
return nil, err
}
return Nodes{h}, nil
}
var slugRe = regexp.MustCompile(`[^a-z0-9-]+`)
var multiHyphenRe = regexp.MustCompile(`-{2,}`)
func Slug(text string) string {
s := strings.ToLower(strings.TrimSpace(text))
s = strings.ReplaceAll(s, " ", "-")
s = slugRe.ReplaceAllString(s, "")
s = multiHyphenRe.ReplaceAllString(s, "-")
s = strings.Trim(s, "-")
return s
}
func UniqueSlug(text string, seen map[string]int) string {
base := Slug(text)
if base == "" {
base = "heading"
}
if _, exists := seen[base]; !exists {
seen[base] = 1
return base
}
for {
count := seen[base]
candidate := fmt.Sprintf("%s-%d", base, count)
seen[base] = count + 1
if _, taken := seen[candidate]; !taken {
seen[candidate] = 1
return candidate
}
}
}