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

36 uses

	github.com/yuin/goldmark/ast (current package)
		block.go#L250: 	Info *Text
		block.go#L295: func NewFencedCodeBlock(info *Text) *FencedCodeBlock {
		inline.go#L47: type Text struct {
		inline.go#L80: func (n *Text) Inline() {
		inline.go#L85: func (n *Text) SoftLineBreak() bool {
		inline.go#L90: func (n *Text) SetSoftLineBreak(v bool) {
		inline.go#L100: func (n *Text) IsRaw() bool {
		inline.go#L105: func (n *Text) SetRaw(v bool) {
		inline.go#L115: func (n *Text) HardLineBreak() bool {
		inline.go#L120: func (n *Text) SetHardLineBreak(v bool) {
		inline.go#L130: func (n *Text) Merge(node Node, source []byte) bool {
		inline.go#L131: 	t, ok := node.(*Text)
		inline.go#L145: func (n *Text) Text(source []byte) []byte {
		inline.go#L150: func (n *Text) Dump(source []byte, level int) {
		inline.go#L162: func (n *Text) Kind() NodeKind {
		inline.go#L167: func NewText() *Text {
		inline.go#L168: 	return &Text{
		inline.go#L174: func NewTextSegment(v textm.Segment) *Text {
		inline.go#L175: 	return &Text{
		inline.go#L183: func NewRawTextSegment(v textm.Segment) *Text {
		inline.go#L184: 	t := &Text{
		inline.go#L197: 	t, ok := last.(*Text)
		inline.go#L209: 	if t, ok := prev.(*Text); ok && t.Segment.Stop == s.Start && !t.SoftLineBreak() {
		inline.go#L300: 		text := c.(*Text).Segment
		inline.go#L464: 	value *Text
		inline.go#L506: func NewAutoLink(typ AutoLinkType, value *Text) *AutoLink {

	github.com/yuin/goldmark/extension
		table.go#L307: 				ts := &c.(*gast.Text).Segment
		table.go#L312: 							segment := n.(*gast.Text).Segment

	github.com/yuin/goldmark/parser
		code_span.go#L63: 		segment := node.FirstChild().(*ast.Text).Segment
		code_span.go#L68: 		segment = node.LastChild().(*ast.Text).Segment
		code_span.go#L73: 			t := node.FirstChild().(*ast.Text)
		code_span.go#L76: 			t = node.LastChild().(*ast.Text)
		code_span.go#L77: 			segment = node.LastChild().(*ast.Text).Segment
		fcode_block.go#L50: 	var info *ast.Text

	github.com/yuin/goldmark/renderer/html
		html.go#L476: 			segment := c.(*ast.Text).Segment
		html.go#L607: 	n := node.(*ast.Text)