We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: