mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-09-18 07:12:31 +00:00
Update dependencies (#1822)
This commit is contained in:
4
vendor/github.com/gomarkdown/markdown/html/doc.go
generated
vendored
4
vendor/github.com/gomarkdown/markdown/html/doc.go
generated
vendored
@@ -26,8 +26,8 @@ links or code blocks.
|
||||
|
||||
// a very dummy render hook that will output "code_replacements" instead of
|
||||
// <code>${content}</code> emitted by html.Renderer
|
||||
func renderHookCodeBlock(w io.Writer, node *ast.Node, entering bool) (ast.WalkStatus, bool) {
|
||||
_, ok := node.Data.(*ast.CodeBlockData)
|
||||
func renderHookCodeBlock(w io.Writer, node ast.Node, entering bool) (ast.WalkStatus, bool) {
|
||||
_, ok := node.(*ast.CodeBlock)
|
||||
if !ok {
|
||||
return ast.GoToNext, false
|
||||
}
|
||||
|
Reference in New Issue
Block a user