+<?xml version="1.0"?>
+<!--
+⁌ ⛩️📰 书社 ∷ lib/catalog2destinations.xslt
+
+© 2024 Lady [@ Lady’s Computer]
+
+This Source Code Form is subject to the terms of the Mozilla Public License, v 2.0.
+If a copy of the M·P·L was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
+-->
+<transform
+ xmlns="http://www.w3.org/1999/XSL/Transform"
+ xmlns:catalog="urn:oasis:names:tc:entity:xmlns:xml:catalog"
+ xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4"
+ version="1.0"
+>
+ <template match="/">
+ <for-each select="//catalog:uri[starts-with(@name, 'about:shushe?source=')]">
+ <choose>
+ <when test="substring-after(@uri, '#')='xml'">
+ <variable name="destination" select="document(substring-before(@uri, '#'), .)/*/@书社:destination"/>
+ <value-of select="@name"/>
+ <text>|</text>
+ <choose>
+ <when test="$destination">
+ <value-of select="$destination"/>
+ </when>
+ <otherwise>
+ <value-of select="substring-after(@name, 'about:shushe?source=')"/>
+ </otherwise>
+ </choose>
+ <text>
</text>
+ </when>
+ <otherwise>
+ <value-of select="@name"/>
+ <text>|</text>
+ <value-of select="substring-after(@name, 'about:shushe?source=')"/>
+ <text>
</text>
+ </otherwise>
+ </choose>
+ </for-each>
+ </template>
+ <output method="text" encoding="UTF-8"/>
+</transform>