/usr/share/doc/libsmlnj-smlnj/HTML/html-attr-vals.sml is in libsmlnj-smlnj 110.78-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | (* html-attr-vals.sml
*
* COPYRIGHT (c) 1996 AT&T Research.
*
* This structure is necessary since the attrs type is used in the parser,
* and there is no way to get it into the parser's signature.
*)
structure HTMLAttrVals =
struct
(* support for building elements that have attributes *)
datatype attr_val
= NAME of string (* [a-zA-Z.-]+ *)
| STRING of string (* a string enclosed in "" or '' *)
| IMPLICIT
type attrs = (string * attr_val) list
end;
|