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 123c832 commit 80f9034Copy full SHA for 80f9034
xsl/dublin-core.xsl
@@ -87,7 +87,13 @@ See the accompanying LICENSE file for applicable license.
87
88
<!-- INTELLECTUAL PROPERTY: Publisher - prolog/publisher -->
89
<xsl:template match="*[contains(@class,' topic/publisher ')]" mode="gen-metadata">
90
- <meta name="DC.publisher" content="{normalize-space(.)}"/>
+ <xsl:variable name="text">
91
+ <xsl:for-each select="*">
92
+ <xsl:value-of select="normalize-space(.)"/>
93
+ <xsl:text> </xsl:text>
94
+ </xsl:for-each>
95
+ </xsl:variable>
96
+ <meta name="DC.publisher" content="{normalize-space($text)}"/>
97
</xsl:template>
98
99
<!-- Usage Rights - prolog/permissions -->
0 commit comments