From e7785f4533ab08d94a4afba24b926fe2ea6affab Mon Sep 17 00:00:00 2001 From: Emmanuel Chateau Date: Sun, 26 Jul 2020 23:22:55 -0400 Subject: [PATCH] =?UTF-8?q?ajout=20traitement=20lieu=20et=20=C3=A9diteur?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mappings/tei2html.xqm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mappings/tei2html.xqm b/mappings/tei2html.xqm index 9ade424..697bce1 100644 --- a/mappings/tei2html.xqm +++ b/mappings/tei2html.xqm @@ -94,6 +94,8 @@ function dispatch($node as node()*, $options as map(*)) as item()* { case element(tei:byline) return getByline($node, $options) case element(tei:docImprint) return getDocImprint($node, $options) case element(tei:imprimatur) return getImprimatur($node, $options) + case element(tei:publisher) return getPublisher($node, $options) + case element(tei:pubPlace) return getPubPlace($node, $options) default return passthru($node, $options) }; @@ -257,6 +259,14 @@ declare function getDate($node, $options as map(*)) { { passthru($node, $options)} }; +declare function getPublisher($node, $options) { + { passthru($node, $options)} +}; + +declare function getPubPlace($node, $options) { + { passthru($node, $options)} +}; + (:~ : ~:~:~:~:~:~:~:~:~ : tei biblio