github.com/russross/blackfriday/v2.nodeWalker.current (field)

16 uses

	github.com/russross/blackfriday/v2 (current package)
		node.go#L283: 	for w.current != nil {
		node.go#L284: 		status := visitor(w.current, w.entering)
		node.go#L298: 	current  *Node
		node.go#L305: 		current:  root,
		node.go#L312: 	if (!nw.current.isContainer() || !nw.entering) && nw.current == nw.root {
		node.go#L313: 		nw.current = nil
		node.go#L316: 	if nw.entering && nw.current.isContainer() {
		node.go#L317: 		if nw.current.FirstChild != nil {
		node.go#L318: 			nw.current = nw.current.FirstChild
		node.go#L323: 	} else if nw.current.Next == nil {
		node.go#L324: 		nw.current = nw.current.Parent
		node.go#L327: 		nw.current = nw.current.Next