Skip to content

Commit a2ed931

Browse files
committed
Split rendering logic into nodes and line functionality
1 parent 99f64f6 commit a2ed931

7 files changed

+522
-311
lines changed

autolink_example_test.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ func (t *RegexpLinkTransformer) Transform(node *ast.Document, reader text.Reader
8686
var source = `
8787
Standup notes:
8888
- Previous day:
89-
- Gave feedback on TICKET-123.
90-
- Outlined presentation on syntax-aware markdown transformations.
91-
- Finished my part of TICKET-456 and assigned to Emily.
89+
- Gave feedback on TICKET-123.
90+
- Outlined presentation on syntax-aware markdown transformations.
91+
- Finished my part of TICKET-456 and assigned to Emily.
9292
- Today:
93-
- Add integration tests for TICKET-789.
94-
- Create slides for presentation.
93+
- Add integration tests for TICKET-789.
94+
- Create slides for presentation.
9595
`
9696

9797
func Example() {
@@ -120,10 +120,10 @@ func Example() {
120120
// Output:
121121
// Standup notes:
122122
// - Previous day:
123-
// - Gave feedback on [TICKET-123](https://example.com/TICKET?query=TICKET-123).
124-
// - Outlined presentation on syntax-aware markdown transformations.
125-
// - Finished my part of [TICKET-456](https://example.com/TICKET?query=TICKET-456) and assigned to Emily.
123+
// - Gave feedback on [TICKET-123](https://example.com/TICKET?query=TICKET-123).
124+
// - Outlined presentation on syntax-aware markdown transformations.
125+
// - Finished my part of [TICKET-456](https://example.com/TICKET?query=TICKET-456) and assigned to Emily.
126126
// - Today:
127-
// - Add integration tests for [TICKET-789](https://example.com/TICKET?query=TICKET-789).
128-
// - Create slides for presentation.
127+
// - Add integration tests for [TICKET-789](https://example.com/TICKET?query=TICKET-789).
128+
// - Create slides for presentation.
129129
}

options.go

+5-12
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package markdown
22

33
import (
4-
"strings"
5-
64
"github.com/yuin/goldmark/renderer"
75
)
86

@@ -15,15 +13,15 @@ type Config struct {
1513
}
1614

1715
// NewConfig returns a new Config with defaults and the given options.
18-
func NewConfig(options ...Option) Config {
19-
c := Config{
16+
func NewConfig(options ...Option) *Config {
17+
c := &Config{
2018
IndentStyle: IndentStyle(IndentStyleSpaces),
2119
HeadingStyle: HeadingStyle(HeadingStyleATX),
2220
ThematicBreakStyle: ThematicBreakStyle(ThematicBreakStyleDashed),
2321
ThematicBreakLength: ThematicBreakLength(ThematicBreakLengthMinimum),
2422
}
2523
for _, opt := range options {
26-
opt.SetMarkdownOption(&c)
24+
opt.SetMarkdownOption(c)
2725
}
2826
return c
2927
}
@@ -67,13 +65,8 @@ const (
6765
)
6866

6967
// String returns the string representation of the indent style
70-
func (i IndentStyle) String() string {
71-
return [...]string{" ", "\t"}[i]
72-
}
73-
74-
// Indent returns the string representation of the given indentation level
75-
func (i IndentStyle) Indent(level int) string {
76-
return strings.Repeat(i.String(), level)
68+
func (i IndentStyle) Bytes() []byte {
69+
return [...][]byte{[]byte(" "), []byte("\t")}[i]
7770
}
7871

7972
type withIndentStyle struct {

options_test.go

+10-17
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
11
package markdown
22

33
import (
4-
"bytes"
54
"testing"
65

76
"github.com/stretchr/testify/assert"
8-
"github.com/yuin/goldmark/ast"
97
"github.com/yuin/goldmark/renderer"
10-
"github.com/yuin/goldmark/util"
118
)
129

1310
// TestRendererOptions tests the methods for setting configuration options on the renderer
1411
func TestRendererOptions(t *testing.T) {
1512
var cases = []struct {
1613
name string
1714
options []Option
18-
expected Config
15+
expected *Config
1916
}{
2017
{
2118
"Defaults",
@@ -48,23 +45,19 @@ func TestRendererOptions(t *testing.T) {
4845
t.Run(tc.name, func(t *testing.T) {
4946
assert := assert.New(t)
5047

51-
// Set options by passing them directly to NewNodeRenderer
52-
nodeRenderer := NewNodeRenderer(tc.options...).(*Renderer)
53-
assert.Equal(tc.expected, nodeRenderer.Config)
48+
// Set options by passing them directly to NewRenderer
49+
r := NewRenderer(tc.options...)
50+
assert.Equal(tc.expected, r.config)
5451

55-
// Set options by name using goldmark's renderer.AddOptions
56-
nodeRenderer = NewNodeRenderer().(*Renderer)
57-
r := renderer.NewRenderer(renderer.WithNodeRenderers(util.Prioritized(nodeRenderer, 1000)))
52+
// Set options by name using AddOptions
53+
r = NewRenderer()
5854
// Convert markdown Option interface to renderer.Option interface
59-
rendererOptions := make([]renderer.Option, len(tc.options))
55+
options := make([]renderer.Option, len(tc.options))
6056
for i, o := range tc.options {
61-
rendererOptions[i] = o
57+
options[i] = o
6258
}
63-
r.AddOptions(rendererOptions...)
64-
// Must call Render() to apply options
65-
err := r.Render(&bytes.Buffer{}, []byte{}, ast.NewDocument())
66-
assert.NoError(err)
67-
assert.Equal(tc.expected, nodeRenderer.Config)
59+
r.AddOptions(options...)
60+
assert.Equal(tc.expected, r.config)
6861
})
6962
}
7063
}

0 commit comments

Comments
 (0)