We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 408d10e commit f57525dCopy full SHA for f57525d
src/main/xar-resources/services/get-rec.xql
@@ -68,7 +68,7 @@ declare function local:markdown($nodes as node()*) as item()* {
68
return
69
" "
70
71
- case element(tei:em)
+ case element(tei:emph)
72
73
(
74
"*",
src/main/xar-resources/services/submit.xql
@@ -377,7 +377,7 @@ declare function local:markdown($s) {
377
for $node in fn:analyze-string($s, "\*(.*?)\*")/child::*
378
379
typeswitch($node)
380
- case element(fn:match) return <tei:em>{$node/fn:group/node()}</tei:em>
+ case element(fn:match) return <tei:emph>{$node/fn:group/node()}</tei:emph>
381
default return $node/node()
382
};
383
0 commit comments