-- | -- the Xslt keywords -- module XsltKeywords where -- ------------------------------------------------------------ -- -- string constants for representing Xslt keyPattern and axis a_child, -- axisNames a_attribute :: String k_id, -- keyPattern k_key :: String -- ------------------------------------------------------------ a_attribute = "attribute" a_child = "child" k_id = "id" k_key = "key" -- ------------------------------------------------------------