package main var LINK_HTTP_EQUIV_SAFE_VALUES [][]byte = [][]byte{ // X-UA-Compatible will be added automaticaly, so it can be skipped []byte("date"), []byte("last-modified"), []byte("refresh"), // URL rewrite []byte("content-language"), } var LINK_REL_SAFE_VALUES [][]byte = [][]byte{ []byte("alternate"), []byte("archives"), []byte("author"), []byte("copyright"), []byte("first"), []byte("help"), []byte("icon"), []byte("index"), []byte("last"), []byte("license"), []byte("manifest"), []byte("next"), []byte("pingback"), []byte("prev"), []byte("publisher"), []byte("search"), []byte("shortcut icon"), []byte("stylesheet"), []byte("up"), }