automatically ignore known forwarded addresses, fixes #64
This commit is contained in:
5
vendor/github.com/yuin/goldmark/extension/ast/table.go
generated
vendored
5
vendor/github.com/yuin/goldmark/extension/ast/table.go
generated
vendored
@@ -2,8 +2,9 @@ package ast
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
gast "github.com/yuin/goldmark/ast"
|
||||
"strings"
|
||||
|
||||
gast "github.com/yuin/goldmark/ast"
|
||||
)
|
||||
|
||||
// Alignment is a text alignment of table cells.
|
||||
@@ -45,7 +46,7 @@ type Table struct {
|
||||
Alignments []Alignment
|
||||
}
|
||||
|
||||
// Dump implements Node.Dump
|
||||
// Dump implements Node.Dump.
|
||||
func (n *Table) Dump(source []byte, level int) {
|
||||
gast.DumpHelper(n, source, level, nil, func(level int) {
|
||||
indent := strings.Repeat(" ", level)
|
||||
|
||||
Reference in New Issue
Block a user