Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for headingID (0.2 sec)

  1. src/cmd/vendor/rsc.io/markdown/heading.go

    }
    
    func (b *Heading) printMarkdown(buf *bytes.Buffer, s mdState) {
    	// TODO: handle setext headings properly.
    	buf.WriteString(s.prefix)
    	for i := 0; i < b.Level; i++ {
    		buf.WriteByte('#')
    	}
    	buf.WriteByte(' ')
    	// The prefix has already been printed for this line of text.
    	s.prefix = ""
    	b.Text.printMarkdown(buf, s)
    	if b.ID != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    			},
    		},
    	}
    }
    
    // removeEmptySections removes headings with no content. A heading has no content
    // if there are no blocks between it and the next heading at the same level, or the
    // end of the document.
    func removeEmptySections(bs []md.Block) []md.Block {
    	res := bs[:0]
    	delta := 0 // number of lines by which to adjust positions
    
    	// Remove preceding headings at same or higher level; they are empty.
    	rem := func(level int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            }
        }
    
        private void addAnchorsForHeadings(Document document) {
            // add anchors for all of the headings
            for (Element heading : document.body().select("h2,h3,h4")) {
                String anchorName = heading.text().toLowerCase().replaceAll(" ", "-");
                heading.attr("id", anchorName);
            }
        }
    
        public void setJqueryFiles(Set<File> jqueryFiles) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/0-heading.md

    Jonathan Amsterdam <******@****.***> 1705947607 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 16:44:53 UTC 2024
    - 60 bytes
    - Viewed (0)
  5. doc/initial/6-stdlib/99-minor/0-heading.md

    Jonathan Amsterdam <******@****.***> 1705624488 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 60 bytes
    - Viewed (0)
  6. doc/initial/6-stdlib/0-heading.md

    Jonathan Amsterdam <******@****.***> 1705624488 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 32 bytes
    - Viewed (0)
  7. doc/next/6-stdlib/0-heading.md

    Russ Cox <******@****.***> 1710441773 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 03:39:16 UTC 2024
    - 28 bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

            then:
            def lines = output.readLines()
            if (lines.find { it == noInfoHeading }) { return }
    
            lines.find { it == heading } // here for nicer output if the output isn't what we expect
            def headingIndex = lines.indexOf(heading)
            def classpathSize = Integer.parseInt(lines[headingIndex + 1])
            // The gradle-launcher.jar is mandatory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. JavadocStyleGuide.md

    | 4  | `@see`        | Adds a “See Also” heading with a link or text entry that points to a reference | `@see string`<br>`@see <a href=”URL#value”>label</a>`<br>`@see package.class#member label`                                                                                                                         |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    // addTest adds an arbitrary test callback to the test list.
    //
    // name must uniquely identify the test and heading must be non-empty.
    func (t *tester) addTest(name, heading string, fn func(*distTest) error) {
    	if t.testNames[name] {
    		panic("duplicate registered test name " + name)
    	}
    	if heading == "" {
    		panic("empty heading")
    	}
    	// Two simple checks for cases that would conflict with the fast path in registerTests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top