Which do you like, tags only, or attributes?
I find tags-only to be easier to look at in general, but having attributes makes the data more compact. So for large data sets, tag-only gets very leggy.
What do you think?
With Attributes
<traveller name="Standard Disposable Titan Battle Dress" TDIF="1.0" av="120" burden="Disposable" class="Dress" code="StDTBD" cr="3000000" descriptor="Battle" kg="2430" size="Titan" stage="Standard" tl="20" type="Armor">
<protections ca="75" fl="75" in="105" ps="15" ra="75" se="75" so="75" />
<qrebs r="-1" s="1" />
</traveller>
Tags Only
I find tags-only to be easier to look at in general, but having attributes makes the data more compact. So for large data sets, tag-only gets very leggy.
What do you think?
With Attributes
<traveller name="Standard Disposable Titan Battle Dress" TDIF="1.0" av="120" burden="Disposable" class="Dress" code="StDTBD" cr="3000000" descriptor="Battle" kg="2430" size="Titan" stage="Standard" tl="20" type="Armor">
<protections ca="75" fl="75" in="105" ps="15" ra="75" se="75" so="75" />
<qrebs r="-1" s="1" />
</traveller>
Tags Only
Code:
<traveller>
<name>Standard Disposable Titan Battle Dress</name>
<TDIF>1.0</TDIF>
<av>120</av>
<burden>Disposable</burden>
<class>Dress</class>
<code>StDTBD</code>
<cr>3000000</cr>
<descriptor>Battle</descriptor>
<kg>2430</kg>
<protections>
<ca>75</ca>
<fl>75</fl>
<in>105</in>
<ps>15</ps>
<ra>75</ra>
<se>75</se>
<so>75</so>
</protections>
<qrebs>
<r>-1</r>
<s>1</s>
</qrebs>
<size>Titan</size>
<stage>Standard</stage>
<tl>20</tl>
<type>Armor</type>
</traveller>