Skip to content

Commit

Permalink
Merge branch 'feature/M2O1-11' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
gkostkowski committed Sep 24, 2024
2 parents 01dbca8 + 48e046d commit 04afb9b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/owl-core-lib/connectors-owl-core.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -234,15 +234,17 @@

<xsl:variable name="connectorDocumentations" as="xs:string*"
select="
for $connector in $connectorsWithSameName
return
if ($connector/documentation/@value) then
fn:concat($connector/documentation/@value, ' (', f:getConnectorName($connector), ') ')
else
()"/>
fn:distinct-values(
for $connector in $connectorsWithSameName
return
if ($connector/documentation/@value) then
fn:normalize-space($connector/documentation/@value)
else
()
)"/>

<xsl:variable name="documentation"
select="fn:normalize-space(f:formatDocString(fn:string-join($connectorDocumentations)))"/>
select="fn:normalize-space(f:formatDocString(fn:string-join($connectorDocumentations, ' ')))"/>

<xsl:variable name="connectorNotes" as="xs:string*"
select="
Expand Down

0 comments on commit 04afb9b

Please sign in to comment.