59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
package markdown
|
|
|
|
import (
|
|
"io"
|
|
"testing"
|
|
|
|
"github.com/gomarkdown/markdown/ast"
|
|
"github.com/gomarkdown/markdown/html"
|
|
"github.com/gomarkdown/markdown/parser"
|
|
)
|
|
|
|
func renderHookEmpty(w io.Writer, node ast.Node, entering bool) (ast.WalkStatus, bool) {
|
|
return ast.GoToNext, true
|
|
}
|
|
|
|
func TestRenderNodeHookEmpty(t *testing.T) {
|
|
t.Parallel()
|
|
tests := []string{
|
|
"[foo](gopher://foo.bar)",
|
|
"",
|
|
|
|
"[foo](mailto://bar/)\n",
|
|
"",
|
|
}
|
|
|
|
htmlParams := html.RendererOptions{
|
|
RenderNodeHook: renderHookEmpty,
|
|
}
|
|
params := TestParams{
|
|
RendererOptions: htmlParams,
|
|
}
|
|
doTestsParam(t, tests, params)
|
|
}
|
|
|
|
func renderHookCodeBlock(w io.Writer, node ast.Node, entering bool) (ast.WalkStatus, bool) {
|
|
_, ok := node.(*ast.CodeBlock)
|
|
if !ok {
|
|
return ast.GoToNext, false
|
|
}
|
|
io.WriteString(w, "code_replacement")
|
|
return ast.GoToNext, true
|
|
}
|
|
|
|
func TestRenderNodeHookCode(t *testing.T) {
|
|
t.Parallel()
|
|
tests := []string{
|
|
"a\n```go\ncode\n```\nb",
|
|
"<p>a</p>\ncode_replacement\n<p>b</p>\n",
|
|
}
|
|
opts := html.RendererOptions{
|
|
RenderNodeHook: renderHookCodeBlock,
|
|
}
|
|
params := TestParams{
|
|
RendererOptions: opts,
|
|
extensions: parser.CommonExtensions,
|
|
}
|
|
doTestsParam(t, tests, params)
|
|
}
|