type github.com/yuin/goldmark/ast.List

12 uses

	github.com/yuin/goldmark/ast (current package)
		block.go#L328: type List struct {
		block.go#L344: func (l *List) IsOrdered() bool {
		block.go#L350: func (l *List) CanContinue(marker byte, isOrdered bool) bool {
		block.go#L355: func (l *List) Dump(source []byte, level int) {
		block.go#L371: func (l *List) Kind() NodeKind {
		block.go#L376: func NewList(marker byte) *List {
		block.go#L377: 	return &List{

	github.com/yuin/goldmark/parser
		list.go#L125: 	if _, lok := last.(*ast.List); lok || pc.Get(skipListParser) != nil {
		list.go#L160: 	list := node.(*ast.List)
		list.go#L215: 	list := node.(*ast.List)
		list_item.go#L28: 	list, lok := parent.(*ast.List)

	github.com/yuin/goldmark/renderer/html
		html.go#L325: 	n := node.(*ast.List)