You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(: Tokenizes actor names in Folger Shakespeare
JC.xml stage directions, removes
extraneous actor-name markup,
prints stage direction numbers,
and prints "none" if no actor is
mentioned in the directions :)
let $p := //stage
for $act in $p/@who ! tokenize(., " |_JC")
for $actor in $act ! tokenize(., " |#")
for $stg in //stage
return
<TEI_sorta>
{ if ($actor) then $actor else "none" }
{ $stg/@type }
{ $stg/@n }
</TEI_sorta>