Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ForceBlankBetween (0.21 sec)

  1. src/go/doc/comment/testdata/list6.txt

       Multiple paragraphs.
    -- dump --
    Doc
    	Paragraph
    		Plain "Text."
    	List ForceBlankBefore=false ForceBlankBetween=false
    		Item Number=""
    			Paragraph
    				Plain "List immediately after."
    		Item Number=""
    			Paragraph
    				Plain "Another."
    	Paragraph
    		Plain "More text."
    	List ForceBlankBefore=true ForceBlankBetween=false
    		Item Number=""
    			Paragraph
    				Plain "List after blank line."
    		Item Number=""
    			Paragraph
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata_test.go

    			dumpTo(out, indent, blk)
    		}
    
    	case *Heading:
    		fmt.Fprintf(out, "Heading")
    		dumpTo(out, indent+1, x.Text)
    
    	case *List:
    		fmt.Fprintf(out, "List ForceBlankBefore=%v ForceBlankBetween=%v", x.ForceBlankBefore, x.ForceBlankBetween)
    		dumpTo(out, indent+1, x.Items)
    
    	case []*ListItem:
    		for _, item := range x {
    			dumpNL(out, indent)
    			dumpTo(out, indent, item)
    		}
    
    	case *ListItem:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/go/doc/comment/parse.go

    	// the blank line is preserved when printing.
    	ForceBlankBefore bool
    
    	// ForceBlankBetween indicates that list items must be
    	// separated by blank lines when reformatting the comment,
    	// overriding the usual conditions. See the BlankBetween method.
    	//
    	// The comment parser sets ForceBlankBetween for any list
    	// that has a blank line between any two of its items, to make sure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  4. api/go1.19.txt

    pkg go/doc/comment, type LinkDef struct, Used bool #51082
    pkg go/doc/comment, type List struct #51082
    pkg go/doc/comment, type List struct, ForceBlankBefore bool #51082
    pkg go/doc/comment, type List struct, ForceBlankBetween bool #51082
    pkg go/doc/comment, type List struct, Items []*ListItem #51082
    pkg go/doc/comment, type ListItem struct #51082
    pkg go/doc/comment, type ListItem struct, Content []Block #51082
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"LinkDef", Type, 19},
    		{"LinkDef.Text", Field, 19},
    		{"LinkDef.URL", Field, 19},
    		{"LinkDef.Used", Field, 19},
    		{"List", Type, 19},
    		{"List.ForceBlankBefore", Field, 19},
    		{"List.ForceBlankBetween", Field, 19},
    		{"List.Items", Field, 19},
    		{"ListItem", Type, 19},
    		{"ListItem.Content", Field, 19},
    		{"ListItem.Number", Field, 19},
    		{"Paragraph", Type, 19},
    		{"Paragraph.Text", Field, 19},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top