Open jonathanrobie opened 2 years ago
We currently have a top-level node in each sentence that has role="cl", as opposed to class="cl" in lower nodes. This is confusing to many.
role="cl"
class="cl"
<wg role="cl"> <wg class="cl" rule="P2CL" cltype="Verbless" xml:id="400010010010082">
Some ways we could fix this:
I favor #1, just deleting the attribute, which gives us:
<sentence> <p> <milestone unit="verse" id="MAT 1:1">MAT 1:1</milestone> Βίβλος γενέσεως Ἰησοῦ Χριστοῦ υἱοῦ Δαυεὶδ υἱοῦ Ἀβραάμ. </p> <wg> <wg class="cl" rule="P2CL" cltype="Verbless" xml:id="400010010010082">
In my sandbox, I did that with this XQuery:
for $node in //sentence/wg return delete node $node/@role
We currently have a top-level node in each sentence that has
role="cl"
, as opposed toclass="cl"
in lower nodes. This is confusing to many.Some ways we could fix this:
I favor #1, just deleting the attribute, which gives us:
In my sandbox, I did that with this XQuery: