Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for emph (0.06 sec)

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

    	for _, c := range x.Inner {
    		c.PrintText(buf)
    	}
    }
    
    type Emph struct {
    	Marker string
    	Inner  []Inline
    }
    
    func (*Emph) Inline() {}
    
    func (x *Emph) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("")
    	for _, c := range x.Inner {
    		c.PrintHTML(buf)
    	}
    	buf.WriteString("")
    }
    
    func (x *Emph) printMarkdown(buf *bytes.Buffer) {
    	buf.WriteString(x.Marker)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/link.go

    // https://github.github.com/gfm/#autolinks-extension-
    
    // autoLinkMore rewrites any extended autolinks in the body
    // and returns the result.
    //
    // body is a list of Plain, Emph, Strong, and Del nodes.
    // Two Plains only appear consecutively when one is a
    // potential emphasis marker that ended up being plain after all, like "_" or "**".
    // There are no Link nodes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/lang/StringUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testCamelize() throws Exception {
            assertNull(StringUtil.camelize(null));
            assertEquals("Emp", StringUtil.camelize("EMP"));
            assertEquals("AaaBbb", StringUtil.camelize("AAA_BBB"));
            assertEquals("UserId", StringUtil.camelize("USER_ID"));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

        public static final String ALSO_MAKE = "am";
    
        public static final String ALSO_MAKE_DEPENDENTS = "amd";
    
        public static final String LOG_FILE = "l";
    
        public static final String ENCRYPT_MASTER_PASSWORD = "emp";
    
        public static final String ENCRYPT_PASSWORD = "ep";
    
        public static final String THREADS = "T";
    
        public static final String BUILDER = "b";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top