Skip to content

Commit

Permalink
remplacement des divs par des span pour ls notes
Browse files Browse the repository at this point in the history
  • Loading branch information
emchateau committed Mar 1, 2023
1 parent 12dc6e2 commit b9d90b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mappings/tei2html.xqm
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ declare function note($node as element(tei:note)+, $options as map(*)) {
return if ($ref) then $ref else ()
}</a>
{passthru($node, $options)}</div>
else (<div class='note'>{passthru($node, $options)}</div>)
else (<span class='note'>{passthru($node, $options)}</span>)
};

declare function formula($node as element(tei:formula), $options as map(*)) {
Expand Down

0 comments on commit b9d90b1

Please sign in to comment.