Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for aelig (0.24 sec)

  1. src/html/entity.go

    var entity2 map[string][2]rune
    
    // populateMapsOnce guards calling populateMaps.
    var populateMapsOnce sync.Once
    
    // populateMaps populates entity and entity2.
    func populateMaps() {
    	entity = map[string]rune{
    		"AElig;":                           '\U000000C6',
    		"AMP;":                             '\U00000026',
    		"Aacute;":                          '\U000000C1',
    		"Abreve;":                          '\U00000102',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  2. src/mdo/reader-stax.vm

            // Special entities
            // ----------------------------------------------------------------------
    
            entities.put("OElig", "\u0152");
            entities.put("oelig", "\u0153");
            entities.put("Scaron", "\u0160");
            entities.put("scaron", "\u0161");
            entities.put("Yuml", "\u0178");
            entities.put("circ", "\u02c6");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. src/mdo/reader.vm

            // Special entities
            // ----------------------------------------------------------------------
    
            entities.put("OElig", "\u0152");
            entities.put("oelig", "\u0153");
            entities.put("Scaron", "\u0160");
            entities.put("scaron", "\u0161");
            entities.put("Yuml", "\u0178");
            entities.put("circ", "\u02c6");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/entity.go

    // license that can be found in the LICENSE file.
    
    //go:generate go run entity2go.go -o entity.go
    
    package markdown
    
    // htmlEntity maps known HTML entity sequences to their meanings.
    var htmlEntity = map[string]string{
    	"Æ":                           "\u00c6",
    	"&":                             "\u0026",
    	"Á":                          "\u00c1",
    	"Ă":                          "\u0102",
    	"Â":                           "\u00c2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. src/encoding/xml/xml.go

    	"clubs":    "\u2663",
    	"hearts":   "\u2665",
    	"diams":    "\u2666",
    	"quot":     "\u0022",
    	"amp":      "\u0026",
    	"lt":       "\u003C",
    	"gt":       "\u003E",
    	"OElig":    "\u0152",
    	"oelig":    "\u0153",
    	"Scaron":   "\u0160",
    	"scaron":   "\u0161",
    	"Yuml":     "\u0178",
    	"circ":     "\u02C6",
    	"tilde":    "\u02DC",
    	"ensp":     "\u2002",
    	"emsp":     "\u2003",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  6. test-site/activator-launch-1.3.2.jar

    "&#188;"> <!ENTITY frac12 "&#189;"> <!ENTITY frac34 "&#190;"> <!ENTITY iquest "&#191;"> <!ENTITY Agrave "&#192;"> <!ENTITY Aacute "&#193;"> <!ENTITY Acirc "&#194;"> <!ENTITY Atilde "&#195;"> <!ENTITY Auml "&#196;"> <!ENTITY Aring "&#197;"> <!ENTITY AElig "&#198;"> <!ENTITY Ccedil "&#199;"> <!ENTITY Egrave "&#200;"> <!ENTITY Eacute "&#201;"> <!ENTITY Ecirc "&#202;"> <!ENTITY Euml "&#203;"> <!ENTITY Igrave "&#204;"> <!ENTITY Iacute "&#205;"> <!ENTITY Icirc "&#206;"> <!ENTITY Iuml "&#207;"> <!ENTITY ETH...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top