Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseAttrValueSpec (0.24 sec)

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

    	// an attribute name, and an optional attribute value specification.”
    	i = skipSpace(s, i)
    	if _, j, ok := parseAttrName(s, i); ok {
    		if _, k, ok := parseAttrValueSpec(p, s, j); ok {
    			j = k
    		}
    		return s[i:j], j, true
    	}
    	return "", 0, false
    }
    
    func parseAttrName(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