validation - RelaxNG - *any* attribute? -


is there way define any name attribute? i'm validating code users can , apply own attributes tags , like, don't impact project.

<define name="div">   <zeroormore>     <attribute name="*">       <text />     </attribute>   </zeroormore>   <text /> </define> 

<anyname/> seems looking for:

<define name="div">   <zeroormore>     <attribute>      <anyname/>     </attribute>   </zeroormore>   <text/> </define> 

Comments

Popular posts from this blog

javascript - Iterate over array and calculate average values of array-parts -

iphone - Using nested NSDictionary with Picker -

objective c - Newbie question -multiple parameters -