Skip to content

Commit 833cb03

Browse files
committed
fix filename -- currently, there is an issue if xslt filename has "_" or "-".
1 parent 703e8ba commit 833cb03

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

examples/personal-data/plugins/entities/people/input/load_birth/content/content.xqy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ declare function plugin:create-content(
2121
$options as map:map) as node()?
2222
{
2323
(: $raw-content :)
24-
xdmp:xslt-invoke("content-template.xsl", $raw-content)
24+
xdmp:xslt-invoke("contenttemplate.xsl", $raw-content)
2525
};

examples/personal-data/plugins/entities/people/input/load_birth/headers/headers.xqy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ declare function plugin:create-headers(
2121
$options as map:map) as node()*
2222
{
2323
(: () :)
24-
xdmp:xslt-invoke("header-template.xsl", $content)
24+
xdmp:xslt-invoke("headertemplate.xsl", $content)
2525
};

0 commit comments

Comments
 (0)