Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseTagName (0.09 sec)

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

    		// Goldmark allows spaces here but the spec and the Dingus do not.
    		p.corner = true
    	}
    
    	if _, j, ok := parseTagName(s, i+2); ok {
    		j = skipSpace(s, j)
    		if j < len(s) && s[j] == '>' {
    			return &HTMLTag{s[i : j+1]}, j + 1, true
    		}
    	}
    	return nil, 0, false
    }
    
    func parseTagName(s string, i int) (string, int, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top