Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unescapeEntity (0.38 sec)

  1. src/html/escape.go

    	// 0x00->'\uFFFD' is handled programmatically.
    	// 0x0D->'\u000D' is a no-op.
    }
    
    // unescapeEntity reads an entity like "<" from b[src:] and writes the
    // corresponding "<" to b[dst:], returning the incremented dst and src cursors.
    // Precondition: b[src] == '&' && dst <= src.
    func unescapeEntity(b []byte, dst, src int) (dst1, src1 int) {
    	const attribute = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 13 07:00:18 UTC 2020
    - 5K bytes
    - Viewed (0)
Back to top