But that seems to have changed in Anarki. An attribute that is not registered treats its value [as a string](https://github.com/arclanguage/anarki/blob/master/lib/html.arc#L254). I suspect there's some more room for simplification because of this change.
So, in Anarki, what's the point of registering? There's opstring and opnum, which only differ in double-quoting the value. Opcolor prints a # before the hex representation of the value.
The only difference between opsym and opnum, as far as I can tell, is that opnum doesn't print anything if given a nil value.
Opsel and opcheck print out selected or checked, depending if the value is truthy.
Basically, I'm seeing this as all more complicated than it needs to be -- both in the original Arc design, but also in the current Anarki functionality. What am I missing?