We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d89d092 commit f05b001Copy full SHA for f05b001
2 files changed
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:emph)
+ case element(tei:em)
72
73
(
74
"*",
src/main/xar-resources/services/submit.xql
@@ -392,7 +392,7 @@ declare function local:markdown($s) {
392
for $node in fn:analyze-string($s, "\*(.*?)\*")/child::*
393
394
typeswitch($node)
395
- case element(fn:match) return <tei:emph>{$node/fn:group/node()}</tei:emph>
+ case element(fn:match) return <tei:em>{$node/fn:group/node()}</tei:em>
396
default return $node/node()
397
};
398
0 commit comments