Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for headingID (0.17 sec)

  1. api/go1.19.txt

    pkg go/doc/comment, type Printer struct, DocLinkBaseURL string #51082
    pkg go/doc/comment, type Printer struct, DocLinkURL func(*DocLink) string #51082
    pkg go/doc/comment, type Printer struct, HeadingID func(*Heading) string #51082
    pkg go/doc/comment, type Printer struct, HeadingLevel int #51082
    pkg go/doc/comment, type Printer struct, TextCodePrefix string #51082
    pkg go/doc/comment, type Printer struct, TextPrefix string #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)
  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. 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)
  4. src/go/doc/comment/parse.go

    }
    
    // A Block is block-level content in a doc comment,
    // one of [*Code], [*Heading], [*List], or [*Paragraph].
    type Block interface {
    	block()
    }
    
    // A Heading is a doc comment heading.
    type Heading struct {
    	Text []Text // the heading text
    }
    
    func (*Heading) block() {}
    
    // A List is a numbered or bullet list.
    // Lists are always non-empty: len(Items) > 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Ascii.java

       *
       * @since 8.0
       */
      public static final byte NUL = 0;
    
      /**
       * Start of Heading: A communication control character used at the beginning of a sequence of
       * characters which constitute a machine-sensible address or routing information. Such a sequence
       * is referred to as the "heading." An STX character has the effect of terminating a heading.
       *
       * @since 8.0
       */
      public static final byte SOH = 1;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Ascii.java

       *
       * @since 8.0
       */
      public static final byte NUL = 0;
    
      /**
       * Start of Heading: A communication control character used at the beginning of a sequence of
       * characters which constitute a machine-sensible address or routing information. Such a sequence
       * is referred to as the "heading." An STX character has the effect of terminating a heading.
       *
       * @since 8.0
       */
      public static final byte SOH = 1;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/HtmlTestExecutionResult.groovy

                return assertOutput('Standard error', matcher)
            }
    
            private HtmlTestClassExecutionResult assertOutput(heading, Matcher<? super String> matcher) {
                def tabs = html.select("div.tab")
                def tab = tabs.find { it.select("h2").text() == heading }
                assert matcher.matches(tab ? TextUtil.normaliseLineSeparators(tab.select("span > pre").first().textNodes().first().wholeText) : "")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/parse.go

    // A Parser is safe for concurrent use by multiple goroutines.
    type Parser struct {
    	// HeadingIDs determines whether the parser accepts
    	// the {#hdr} syntax for an HTML id="hdr" attribute on headings.
    	// For example, if HeadingIDs is true then the Markdown
    	//    ## Overview {#overview}
    	// will render as the HTML
    	//    <h2 id="overview">Overview</h2>
    	HeadingIDs bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * For a given -group option, the packages matching the list of packagepattern expressions appear in a table
         * with the heading groupheading.
         * <p>
         * groupheading can be any text, and can include white space. This text is placed in the table heading for the group.
         * packagepattern can be any package name, or can be the start of any package name followed by an asterisk (*).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. docs/en/docs/contributing.md

    * Do not change the paths in links to images, code files, Markdown documents.
    
    * However, when a Markdown document is translated, the `#hash-parts` in links to its headings may change. Update these links if possible.
        * Search for such links in the translated document using the regex `#[^# ]`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top