3 SPDX-FileCopyrightText: 2024, 2025 Lady <https://www.ladys.computer/about/#lady>
4 SPDX-License-Identifier: MPL-2.0
7 ⁌ 💄📝 Les·M·L ∷ parser.xslt
9 © 2024–2025 Lady [@ Ladys Computer]
11 This Source Code Form is subject to the terms of the Mozilla Public License, v 2.0.
12 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/>.
15 <!ENTITY section-break "*-.=_~·․‥…⁂⋯─━┄┅┈┉╌╍═╴╶╸╺☙❧ ・*-.=_~">
16 <!ENTITY sigiled-text "(string-length($text)=1 or substring($text, 2, 1)=' ')">
17 <!ENTITY unsigiled-text "substring($text, 3, string-length($text)-2)">
18 <!ENTITY xhtml "http://www.w3.org/1999/xhtml">
21 xmlns="http://www.w3.org/1999/XSL/Transform"
22 xmlns:LesML="urn:fdc:ladys.computer:20240512:LesML"
23 xmlns:exsl="http://exslt.org/common"
24 xmlns:exslstr="http://exslt.org/strings"
25 xmlns:html="http://www.w3.org/1999/xhtml"
26 xmlns:书社="urn:fdc:ladys.computer:20231231:Shu1She4"
27 exclude-result-prefixes="LesML"
28 extension-element-prefixes="exsl exslstr"
31 <书社:id>urn:fdc:ladys.computer:20240512:LesML:parser.xslt</书社:id>
32 <template name="LesML:split">
33 <param name="source"/>
34 <param name="separator" select="'
'"/>
36 <when test="contains($source, $separator)">
38 <value-of select="substring-before($source, $separator)"/>
40 <call-template name="LesML:split">
41 <with-param name="source" select="substring-after($source, $separator)"/>
42 <with-param name="separator" select="$separator"/>
47 <value-of select="$source"/>
52 <template name="LesML:break-and-unescape">
53 <param name="source"/>
54 <variable name="broken-fragment">
55 <call-template name="LesML:split">
56 <with-param name="source" select="$source"/>
57 <with-param name="separator" select="'
'"/>
60 <variable name="broken" select="exsl:node-set($broken-fragment)/node()"/>
61 <for-each select="$broken">
62 <call-template name="LesML:unescape">
63 <with-param name="source" select="string()"/>
65 <if test="position()!=count($broken)">
66 <element name="br" namespace="&xhtml;"/>
70 <template name="LesML:unescape">
71 <param name="source"/>
73 <when test="contains($source, '{U+')">
74 <variable name="after" select="substring-after($source, '{U+')"/>
76 <when test="contains($after, '}')">
77 <variable name="inner" select="substring-before($after, '}')"/>
78 <variable name="components">
79 <call-template name="LesML:split">
80 <with-param name="source" select="$inner"/>
81 <with-param name="separator" select="'.'"/>
84 <variable name="component-nodes" select="exsl:node-set($components)/node()"/>
85 <value-of select="substring-before($source, '{U+')"/>
87 <when test="$component-nodes[string(.)='' or translate(., '0123456789ABCDEF', '')!='']">
89 <value-of select="$inner"/>
91 <call-template name="LesML:unescape">
92 <with-param name="source" select="substring-after($after, '}')"/>
96 <for-each select="$component-nodes">
97 <text disable-output-escaping="yes">&#x</text>
98 <value-of select="."/>
101 <call-template name="LesML:unescape">
102 <with-param name="source" select="substring-after($after, '}')"/>
108 <value-of select="substring-before($source, '{U+')"/>
110 <call-template name="LesML:unescape">
111 <with-param name="source" select="$after"/>
117 <value-of select="$source"/>
121 <template name="LesML:id-and-contents">
122 <param name="source"/>
124 <when test="starts-with($source, '¶')">
126 <when test="contains($source, ' ')">
127 <variable name="id" select="substring-before(substring-after($source, '¶'), ' ')"/>
129 <attribute name="id">
130 <value-of select="$id"/>
133 <value-of select="substring-after($source, ' ')"/>
136 <attribute name="id">
137 <value-of select="substring-after($source, '¶')"/>
143 <value-of select="$source"/>
147 <template name="LesML:parse">
148 <param name="lines" select="/.."/>
149 <param name="parent-params" select="/.."/>
150 <variable name="first-line" select="$lines[1]"/>
151 <variable name="shebang">
152 <if test="starts-with($first-line, '#!lesml')">
153 <value-of select="$first-line"/>
156 <variable name="params-string">
158 <when test="starts-with($shebang, '#!lesml@')">
159 <value-of select="substring-after($shebang, '$')"/>
162 <value-of select="substring-after($shebang, '#!lesml')"/>
166 <variable name="params-fragment">
168 <when test="$shebang!=''">
170 <if test="starts-with($shebang, '#!lesml@') and contains($shebang, '$')">
176 <value-of select="substring-before(substring-after($shebang, '#!lesml@'), '$')"/>
180 <for-each select="exslstr:tokenize($params-string)">
182 <when test="contains(., '=')">
185 <value-of select="substring-before(., '=')"/>
188 <value-of select="substring-after(., '=')"/>
195 <value-of select="."/>
204 <when test="$parent-params">
205 <copy-of select="$parent-params"/>
212 <variable name="params" select="exsl:node-set($params-fragment)/*"/>
213 <variable name="noshebang" select="$lines[position()>1 or not(starts-with(., '#!lesml') or starts-with(., '##'))]"/>
214 <variable name="docsep" select="$noshebang[starts-with(., '#!lesml') or starts-with(., '##')][1]"/>
215 <variable name="doclines" select="$noshebang[not($docsep) or following-sibling::*[generate-id()=generate-id($docsep)]]"/>
216 <if test="starts-with($first-line, '##') and $first-line!='##'">
218 <value-of select="substring-after($first-line, '##')"/>
221 <if test="$shebang!='' or $doclines[normalize-space()!='']">
222 <variable name="record-separators" select="$doclines[starts-with(., '%%')]"/>
223 <element name="article" namespace="&xhtml;">
224 <for-each select="$params/html:div/html:dt[string()=' LANG ']">
225 <attribute name="lang">
226 <value-of select="following-sibling::html:dd"/>
228 <attribute name="xml:lang">
229 <value-of select="following-sibling::html:dd"/>
232 <for-each select="$params/html:div/html:dt[string()='profile']">
233 <attribute name="data-lesml-profile">
234 <value-of select="following-sibling::html:dd"/>
237 <if test="$record-separators[preceding-sibling::*[normalize-space()!='']]">
238 <element name="footer" namespace="&xhtml;">
239 <attribute name="class">
242 <for-each select="$record-separators">
243 <variable name="position" select="position()"/>
244 <variable name="prev-separator" select="$record-separators[($position)-1]"/>
245 <variable name="fields" select="$noshebang[following-sibling::*[generate-id()=generate-id(current())] and (not($prev-separator) or preceding-sibling::*[generate-id()=generate-id($prev-separator)])]"/>
247 <element name="dl" namespace="&xhtml;">
248 <for-each select="$fields">
250 <when test="starts-with(., ' ') and $fields[generate-id()=generate-id(current()/preceding-sibling::*[1])]"/>
252 <variable name="next" select="following-sibling::*[not(starts-with(., ' '))]"/>
253 <element name="div" namespace="&xhtml;">
254 <element name="dt" namespace="&xhtml;">
255 <value-of select="normalize-space(substring-before(., ':'))"/>
257 <element name="dd" namespace="&xhtml;">
258 <variable name="firstline">
260 <when test="contains(., ':')">
261 <value-of select="normalize-space(substring-after(., ':'))"/>
264 <value-of select="normalize-space(.)"/>
269 <when test="substring($firstline, string-length($firstline))='\' and following-sibling::*[position()=1 and starts-with(., ' ')]">
270 <value-of select="substring($firstline, 1, string-length($firstline)-1)"/>
273 <value-of select="$firstline"/>
276 <for-each select="following-sibling::*[starts-with(., ' ') and not(preceding-sibling::*[generate-id()=generate-id($next)])]">
277 <variable name="nextline" select="normalize-space(.)"/>
279 <when test="substring($nextline, string-length($nextline))='\' and following-sibling::*[position()=1 and starts-with(., ' ')]">
280 <value-of select="substring($nextline, 1, string-length($nextline)-1)"/>
283 <value-of select="$nextline"/>
296 <value-of select="substring-after(., '%%')"/>
302 <element name="div" namespace="&xhtml;">
303 <attribute name="class">
306 <call-template name="LesML:paragraphize">
307 <with-param name="lines" select="$doclines[not($record-separators) or preceding-sibling::*[generate-id()=generate-id($record-separators[last()])]]"/>
313 <call-template name="LesML:parse">
314 <with-param name="lines" select="$docsep|$lines[preceding-sibling::*[generate-id()=generate-id($docsep)]]"/>
315 <with-param name="parent-params" select="$params"/>
319 <template name="LesML:paragraphize">
320 <param name="lines" select="/.."/>
321 <variable name="last-lines" select="$lines[normalize-space()!='' and normalize-space(following-sibling::*[1])='']|$lines[last()]"/>
322 <variable name="blocked">
323 <for-each select="$last-lines">
324 <variable name="position" select="position()"/>
325 <variable name="prev-last" select="$last-lines[($position)-1]"/>
326 <variable name="linespans" select="$lines[following-sibling::*[generate-id()=generate-id(current())] and (not($prev-last) or preceding-sibling::*[generate-id()=generate-id($prev-last)]) and normalize-space()!='']|."/>
327 <variable name="quoted" select="not($linespans[not(starts-with(., ' ') or starts-with(., '	'))])"/>
328 <variable name="preformatted" select="not($linespans[not(starts-with(normalize-space(), '|'))])"/>
329 <variable name="text">
330 <for-each select="$linespans">
332 <when test="$preformatted">
333 <value-of select="substring-after(., '|')"/>
336 <value-of select="normalize-space()"/>
339 <if test="position()!=count($linespans)">
341 <when test="$preformatted">
351 <if test="string($text)!=''">
352 <variable name="par">
354 <when test="$preformatted">
355 <element name="pre" namespace="&xhtml;">
356 <call-template name="LesML:id-and-contents">
357 <with-param name="source" select="$text"/>
361 <when test="starts-with($text, '⁌') and &sigiled-text;">
362 <element name="h1" namespace="&xhtml;">
363 <call-template name="LesML:id-and-contents">
364 <with-param name="source" select="&unsigiled-text;"/>
368 <when test="starts-with($text, '§') and &sigiled-text;">
369 <element name="h2" namespace="&xhtml;">
370 <call-template name="LesML:id-and-contents">
371 <with-param name="source" select="&unsigiled-text;"/>
375 <when test="starts-with($text, '❦') and &sigiled-text;">
376 <element name="h3" namespace="&xhtml;">
377 <call-template name="LesML:id-and-contents">
378 <with-param name="source" select="&unsigiled-text;"/>
382 <when test="starts-with($text, '✠') and &sigiled-text;">
383 <element name="h4" namespace="&xhtml;">
384 <call-template name="LesML:id-and-contents">
385 <with-param name="source" select="&unsigiled-text;"/>
389 <when test="starts-with($text, '•') and &sigiled-text;">
390 <element name="li" namespace="&xhtml;">
391 <attribute name="class">
392 <text>unordered</text>
394 <attribute name="data-level">
397 <element name="p" namespace="&xhtml;">
398 <call-template name="LesML:id-and-contents">
399 <with-param name="source" select="&unsigiled-text;"/>
404 <when test="starts-with($text, '🔢') and &sigiled-text;">
405 <element name="li" namespace="&xhtml;">
406 <attribute name="class">
409 <attribute name="data-level">
412 <element name="p" namespace="&xhtml;">
413 <call-template name="LesML:id-and-contents">
414 <with-param name="source" select="&unsigiled-text;"/>
419 <when test="starts-with($text, '◦') and &sigiled-text;">
420 <element name="li" namespace="&xhtml;">
421 <attribute name="class">
422 <text>unordered</text>
424 <attribute name="data-level">
427 <element name="p" namespace="&xhtml;">
428 <call-template name="LesML:id-and-contents">
429 <with-param name="source" select="&unsigiled-text;"/>
434 <when test="starts-with($text, '🔠') and &sigiled-text;">
435 <element name="li" namespace="&xhtml;">
436 <attribute name="class">
439 <attribute name="data-level">
442 <element name="p" namespace="&xhtml;">
443 <call-template name="LesML:id-and-contents">
444 <with-param name="source" select="&unsigiled-text;"/>
449 <when test="starts-with($text, '▪') and &sigiled-text;">
450 <element name="li" namespace="&xhtml;">
451 <attribute name="class">
452 <text>unordered</text>
454 <attribute name="data-level">
457 <element name="p" namespace="&xhtml;">
458 <call-template name="LesML:id-and-contents">
459 <with-param name="source" select="&unsigiled-text;"/>
464 <when test="starts-with($text, '🔡') and &sigiled-text;">
465 <element name="li" namespace="&xhtml;">
466 <attribute name="class">
469 <attribute name="data-level">
472 <element name="p" namespace="&xhtml;">
473 <call-template name="LesML:id-and-contents">
474 <with-param name="source" select="&unsigiled-text;"/>
479 <when test="starts-with($text, '⁃') and &sigiled-text;">
480 <element name="li" namespace="&xhtml;">
481 <attribute name="class">
482 <text>unordered</text>
484 <attribute name="data-level">
487 <element name="p" namespace="&xhtml;">
488 <call-template name="LesML:id-and-contents">
489 <with-param name="source" select="&unsigiled-text;"/>
494 <when test="starts-with($text, '🔣') and &sigiled-text;">
495 <element name="li" namespace="&xhtml;">
496 <attribute name="class">
499 <attribute name="data-level">
502 <element name="p" namespace="&xhtml;">
503 <call-template name="LesML:id-and-contents">
504 <with-param name="source" select="&unsigiled-text;"/>
509 <when test="starts-with($text, '🛈') and &sigiled-text;">
510 <element name="div" namespace="&xhtml;">
511 <attribute name="role">
514 <attribute name="class">
517 <element name="p" namespace="&xhtml;">
518 <call-template name="LesML:id-and-contents">
519 <with-param name="source" select="&unsigiled-text;"/>
524 <when test="starts-with($text, '⯑') and &sigiled-text;">
525 <element name="div" namespace="&xhtml;">
526 <attribute name="role">
529 <attribute name="class">
532 <element name="p" namespace="&xhtml;">
533 <call-template name="LesML:id-and-contents">
534 <with-param name="source" select="&unsigiled-text;"/>
539 <when test="starts-with($text, '⚠︎') and &sigiled-text;">
540 <element name="div" namespace="&xhtml;">
541 <attribute name="role">
544 <attribute name="class">
547 <element name="p" namespace="&xhtml;">
548 <call-template name="LesML:id-and-contents">
549 <with-param name="source" select="&unsigiled-text;"/>
554 <when test="starts-with($text, '※') and &sigiled-text;">
555 <element name="div" namespace="&xhtml;">
556 <attribute name="role">
559 <attribute name="class">
562 <element name="p" namespace="&xhtml;">
563 <call-template name="LesML:id-and-contents">
564 <with-param name="source" select="&unsigiled-text;"/>
569 <when test="starts-with($text, '☡') and &sigiled-text;">
570 <element name="div" namespace="&xhtml;">
571 <attribute name="role">
574 <attribute name="class">
577 <element name="p" namespace="&xhtml;">
578 <call-template name="LesML:id-and-contents">
579 <with-param name="source" select="&unsigiled-text;"/>
584 <when test="starts-with($text, '⋯') and &sigiled-text;">
585 <element name="div" namespace="&xhtml;">
586 <attribute name="class">
587 <text>continuation</text>
589 <element name="p" namespace="&xhtml;">
590 <call-template name="LesML:id-and-contents">
591 <with-param name="source" select="&unsigiled-text;"/>
596 <when test="starts-with($text, '#') and &sigiled-text;">
598 <value-of select="&unsigiled-text;"/>
602 <element name="p" namespace="&xhtml;">
603 <call-template name="LesML:id-and-contents">
604 <with-param name="source" select="$text"/>
611 <when test="translate(string($text), '§ion-break; ', '')=''">
612 <element name="hr" namespace="&xhtml;"/>
614 <when test="$quoted">
615 <element name="blockquote" namespace="&xhtml;">
616 <copy-of select="$par"/>
620 <copy-of select="$par"/>
626 <variable name="inlined">
627 <apply-templates select="exsl:node-set($blocked)/node()" mode="LesML:linkify"/>
629 <apply-templates select="exsl:node-set($inlined)/node()" mode="LesML:finalize-tree"/>
631 <template match="html:script[@type='text/lesml']">
632 <variable name="lines-fragment">
633 <call-template name="LesML:split">
634 <with-param name="source">
635 <for-each select=".//text()">
636 <value-of select="."/>
641 <call-template name="LesML:parse">
642 <with-param name="lines" select="exsl:node-set($lines-fragment)/*"/>
645 <template match="html:blockquote" mode="LesML:finalize-tree">
646 <if test="not(preceding-sibling::node()) or preceding-sibling::node()[position()=1 and not(self::html:blockquote)]">
647 <variable name="notquote" select="following-sibling::node()[not(self::html:blockquote)][1]"/>
648 <variable name="contents">
649 <copy-of select="node()"/>
650 <for-each select="following-sibling::node()[not($notquote) or following-sibling::node()[generate-id()=generate-id($notquote)]]">
651 <copy-of select="node()"/>
654 <variable name="content-nodes" select="exsl:node-set($contents)/node()"/>
655 <variable name="laststarttext" select="$content-nodes[last()]/self::html:p[not(@class) and not(@role)]/node()[self::text() or self::*][position()=1 and self::text()]"/>
657 <when test="starts-with($laststarttext, '— ')">
658 <variable name="caption">
659 <copy-of select="$laststarttext/preceding-sibling::node()"/>
660 <value-of select="substring-after($laststarttext, '— ')"/>
661 <copy-of select="$laststarttext/following-sibling::node()"/>
663 <element name="figure" namespace="&xhtml;">
665 <apply-templates select="@*|$content-nodes[position()!=last()]" mode="LesML:finalize-tree"/>
667 <element name="figcaption" namespace="&xhtml;">
668 <for-each select="$content-nodes[last()]">
670 <apply-templates select="@*|exsl:node-set($caption)/node()" mode="LesML:finalize-tree"/>
678 <apply-templates select="@*|$content-nodes" mode="LesML:finalize-tree"/>
684 <template match="html:div" mode="LesML:finalize-tree">
685 <if test="not(@class='continuation') or not(preceding-sibling::node()) or preceding-sibling::node()[position()=1 and not(self::html:div or self::html:li)]">
686 <variable name="notcontinuation" select="following-sibling::node()[not(self::html:div and @class='continuation')][1]"/>
688 <apply-templates select="@*|node()" mode="LesML:finalize-tree"/>
689 <for-each select="following-sibling::node()[not($notcontinuation) or following-sibling::node()[generate-id()=generate-id($notcontinuation)]]">
690 <apply-templates select="node()" mode="LesML:finalize-tree"/>
695 <template match="html:li" mode="LesML:finalize-tree">
696 <if test="not(preceding-sibling::node()) or preceding-sibling::node()[not(preceding-sibling::* and self::html:div and @class='continuation')][position()=1 and not(self::html:li)]">
697 <apply-templates select="." mode="LesML:finalize-list"/>
700 <template match="html:li" mode="LesML:finalize-list">
701 <param name="parent-level" select="0"/>
702 <variable name="current-class" select="string(@class)"/>
703 <variable name="current-level" select="number(@data-level)"/>
704 <variable name="wrapper">
706 <when test="@class='ordered'">
714 <variable name="notinlist" select="following-sibling::node()[not(self::html:div and @class='continuation' or self::html:li and (@data-level>$current-level or @data-level=$current-level and @class=$current-class))][1]"/>
715 <element name="{$wrapper}" namespace="&xhtml;">
716 <for-each select=".|following-sibling::html:li[@data-level=$current-level and (not($notinlist) or following-sibling::node()[generate-id()=generate-id($notinlist)])]">
717 <variable name="notcontinuation" select="following-sibling::node()[not(self::html:div and @class='continuation')][1]"/>
719 <apply-templates select="@*|node()" mode="LesML:finalize-tree"/>
720 <for-each select="following-sibling::node()[not($notcontinuation) or following-sibling::node()[generate-id()=generate-id($notcontinuation)]]">
721 <apply-templates select="node()" mode="LesML:finalize-tree"/>
723 <if test="$notcontinuation/self::html:li[@data-level>$current-level]">
724 <apply-templates select="$notcontinuation" mode="LesML:finalize-list">
725 <with-param name="parent-level" select="$current-level"/>
731 <if test="$notinlist/self::html:li[@data-level>$parent-level]">
732 <apply-templates select="$notinlist" mode="LesML:finalize-list">
733 <with-param name="parent-level" select="$parent-level"/>
737 <template match="processing-instruction()[local-name()='LesML-Link-Escape']" mode="LesML:finalize-tree">
740 <template match="text()" mode="LesML:finalize-tree">
741 <call-template name="LesML:break-and-unescape">
742 <with-param name="source" select="string(.)"/>
745 <template match="@*|node()" mode="LesML:finalize-tree" priority="-1">
747 <apply-templates select="@*|node()" mode="LesML:finalize-tree"/>
750 <template match="node()" mode="LesML:inline">
751 <param name="element-name"/>
752 <param name="element-namespace" select="'http://www.w3.org/1999/xhtml'"/>
753 <param name="start-sigil"/>
754 <param name="end-sigil"/>
756 <param name="langtag-supported" select="false()"/>
758 <when test="self::*">
759 <variable name="end-node" select="text()[contains(., $end-sigil)][1]"/>
760 <variable name="has-start-node" select="$end-node/preceding-sibling::text()[contains(., $start-sigil)] or string-length(substring-after($end-node, $start-sigil))>string-length(substring-after($end-node, $end-sigil))"/>
762 <when test="$end-node and $has-start-node">
763 <variable name="preceding">
764 <copy-of select="$end-node/preceding-sibling::node()"/>
765 <value-of select="substring-before($end-node, $end-sigil)"/>
767 <variable name="start-node" select="exsl:node-set($preceding)/text()[contains(., $start-sigil)][last()]"/>
768 <variable name="restoftext" select="substring-after($end-node, $end-sigil)"/>
769 <variable name="maybe-langtag">
770 <if test="$langtag-supported and starts-with($restoftext, '@') and contains($restoftext, '$')">
771 <value-of select="substring-before(substring-after($restoftext, '@'), '$')"/>
774 <variable name="langtag">
775 <if test="translate($maybe-langtag, '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-', '')=''">
776 <value-of select="$maybe-langtag"/>
779 <variable name="start-tokens-fragment">
780 <call-template name="LesML:split">
781 <with-param name="source" select="string($start-node)"/>
782 <with-param name="separator" select="$start-sigil"/>
785 <variable name="start-tokens" select="exsl:node-set($start-tokens-fragment)/*"/>
786 <variable name="wrapped">
788 <copy-of select="@*"/>
789 <copy-of select="$start-node/preceding-sibling::node()"/>
790 <for-each select="$start-tokens[position()!=last()]">
791 <value-of select="."/>
792 <if test="position()!=last()">
793 <value-of select="$start-sigil"/>
796 <element name="{$element-name}" namespace="{$element-namespace}">
797 <if test="string($role)!=''">
798 <attribute name="role">
799 <value-of select="$role"/>
802 <if test="string($langtag)!=''">
803 <if test="$element-namespace='http://www.w3.org/1999/xhtml'">
804 <attribute name="lang">
805 <value-of select="$langtag"/>
808 <attribute name="xml:lang">
809 <value-of select="$langtag"/>
812 <value-of select="$start-tokens[last()]"/>
813 <copy-of select="$start-node/following-sibling::node()"/>
816 <when test="string($langtag)!=''">
817 <value-of select="substring-after($restoftext, '$')"/>
820 <value-of select="$restoftext"/>
823 <copy-of select="$end-node/following-sibling::node()"/>
826 <apply-templates select="exsl:node-set($wrapped)/*" mode="LesML:inline">
827 <with-param name="element-name" select="$element-name"/>
828 <with-param name="element-namespace" select="$element-namespace"/>
829 <with-param name="start-sigil" select="$start-sigil"/>
830 <with-param name="end-sigil" select="$end-sigil"/>
831 <with-param name="role" select="$role"/>
832 <with-param name="langtag-supported" select="$langtag-supported"/>
837 <copy-of select="@*"/>
838 <apply-templates select="node()" mode="LesML:inline">
839 <with-param name="element-name" select="$element-name"/>
840 <with-param name="element-namespace" select="$element-namespace"/>
841 <with-param name="start-sigil" select="$start-sigil"/>
842 <with-param name="end-sigil" select="$end-sigil"/>
843 <with-param name="role" select="$role"/>
844 <with-param name="langtag-supported" select="$langtag-supported"/>
851 <copy-of select="."/>
855 <template match="node()" mode="LesML:linkify">
856 <variable name="result">
858 <when test="self::*">
859 <variable name="end-node" select="text()[contains(., '>}')][1]"/>
860 <variable name="has-start-node" select="$end-node/preceding-sibling::text()[contains(., '{🔗') and not(following-sibling::*)] or string-length(substring-after($end-node, '{🔗'))>string-length(substring-after($end-node, '>}'))"/>
862 <when test="$end-node and $has-start-node">
863 <variable name="preceding">
864 <copy-of select="$end-node/preceding-sibling::node()"/>
865 <value-of select="substring-before($end-node, '>}')"/>
867 <variable name="start-node" select="exsl:node-set($preceding)/text()[contains(., '{🔗') and not(following-sibling::*)][last()]"/>
868 <variable name="start-tokens-fragment">
869 <call-template name="LesML:split">
870 <with-param name="source" select="string($start-node)"/>
871 <with-param name="separator" select="'{🔗'"/>
874 <variable name="start-tokens" select="exsl:node-set($start-tokens-fragment)/*"/>
875 <variable name="hyperlink">
876 <value-of select="$start-tokens[last()]"/>
877 <for-each select="$start-node/following-sibling::node()">
879 <when test="self::text()">
880 <value-of select="."/>
882 <when test="self::processing-instruction()[local-name()='LesML-Link-Escape']">
889 <when test="contains($hyperlink, '<')">
890 <variable name="ltcomponents-fragment">
891 <call-template name="LesML:split">
892 <with-param name="source" select="$hyperlink"/>
893 <with-param name="separator" select="'<'"/>
896 <variable name="ltcomponents" select="exsl:node-set($ltcomponents-fragment)/*"/>
897 <variable name="wrapped">
899 <copy-of select="@*"/>
900 <copy-of select="$start-node/preceding-sibling::node()"/>
901 <for-each select="$start-tokens[position()!=last()]">
902 <value-of select="."/>
903 <if test="position()!=last()">
907 <element name="a" namespace="&xhtml;">
908 <attribute name="href">
909 <value-of select="$ltcomponents[last()]"/>
912 <when test="count($ltcomponents)>2 or normalize-space($ltcomponents[1])!=''">
913 <for-each select="$ltcomponents[position()!=last()]">
914 <value-of select="."/>
915 <if test="position()!=last()">
921 <value-of select="$ltcomponents[last()]"/>
925 <value-of select="substring-after($end-node, '>}')"/>
926 <copy-of select="$end-node/following-sibling::node()"/>
929 <apply-templates select="exsl:node-set($wrapped)/*" mode="LesML:linkify"/>
932 <variable name="escaped">
934 <copy-of select="@*"/>
935 <copy-of select="$start-node/preceding-sibling::node()"/>
936 <for-each select="$start-tokens[position()!=last()]">
937 <value-of select="."/>
938 <if test="position()!=last()">
943 <processing-instruction name="LesML-Link-Escape"/>
944 <copy-of select="$hyperlink"/>
946 <value-of select="substring-after($end-node, '>}')"/>
947 <copy-of select="$end-node/following-sibling::node()"/>
950 <apply-templates select="exsl:node-set($escaped)/*" mode="LesML:linkify"/>
956 <copy-of select="@*"/>
957 <apply-templates select="node()" mode="LesML:linkify"/>
963 <copy-of select="."/>
967 <apply-templates select="exsl:node-set($result)/node()" mode="LesML:strikethrough"/>
969 <template match="node()" mode="LesML:strikethrough">
970 <variable name="result">
971 <apply-templates select="." mode="LesML:inline">
972 <with-param name="element-name" select="'s'"/>
973 <with-param name="element-namespace" select="'&xhtml;'"/>
974 <with-param name="start-sigil" select="'⸠'"/>
975 <with-param name="end-sigil" select="'⸡'"/>
978 <apply-templates select="exsl:node-set($result)/node()" mode="LesML:underline"/>
980 <template match="node()" mode="LesML:underline">
981 <variable name="result">
982 <apply-templates select="." mode="LesML:inline">
983 <with-param name="element-name" select="'u'"/>
984 <with-param name="element-namespace" select="'&xhtml;'"/>
985 <with-param name="start-sigil" select="'⸤'"/>
986 <with-param name="end-sigil" select="'⸥'"/>
989 <apply-templates select="exsl:node-set($result)/node()" mode="LesML:noted"/>
991 <template match="node()" mode="LesML:noted">
992 <variable name="result">
993 <apply-templates select="." mode="LesML:inline">
994 <with-param name="element-name" select="'small'"/>
995 <with-param name="element-namespace" select="'&xhtml;'"/>
996 <with-param name="start-sigil" select="'⟦'"/>
997 <with-param name="end-sigil" select="'⟧'"/>
998 <with-param name="role" select="'note'"/>
1001 <apply-templates select="exsl:node-set($result)/node()" mode="LesML:parenthetical"/>
1003 <template match="node()" mode="LesML:parenthetical">
1004 <variable name="result">
1005 <apply-templates select="." mode="LesML:inline">
1006 <with-param name="element-name" select="'small'"/>
1007 <with-param name="element-namespace" select="'&xhtml;'"/>
1008 <with-param name="start-sigil" select="'⸨'"/>
1009 <with-param name="end-sigil" select="'⸩'"/>
1012 <apply-templates select="exsl:node-set($result)/node()" mode="LesML:code"/>
1014 <template match="node()" mode="LesML:code">
1015 <variable name="result">
1016 <apply-templates select="." mode="LesML:inline">
1017 <with-param name="element-name" select="'code'"/>
1018 <with-param name="element-namespace" select="'&xhtml;'"/>
1019 <with-param name="start-sigil" select="'`'"/>
1020 <with-param name="end-sigil" select="'´'"/>
1023 <apply-templates select="exsl:node-set($result)/node()" mode="LesML:titled"/>
1025 <template match="node()" mode="LesML:titled">
1026 <variable name="result">
1027 <apply-templates select="." mode="LesML:inline">
1028 <with-param name="element-name" select="'cite'"/>
1029 <with-param name="element-namespace" select="'&xhtml;'"/>
1030 <with-param name="start-sigil" select="'⟪'"/>
1031 <with-param name="end-sigil" select="'⟫'"/>
1034 <apply-templates select="exsl:node-set($result)/node()" mode="LesML:offset"/>
1036 <template match="node()" mode="LesML:offset">
1037 <variable name="result">
1038 <apply-templates select="." mode="LesML:inline">
1039 <with-param name="element-name" select="'i'"/>
1040 <with-param name="element-namespace" select="'&xhtml;'"/>
1041 <with-param name="start-sigil" select="'⟨'"/>
1042 <with-param name="end-sigil" select="'⟩'"/>
1043 <with-param name="langtag-supported" select="true()"/>
1046 <apply-templates select="exsl:node-set($result)/node()" mode="LesML:bolded"/>
1048 <template match="node()" mode="LesML:bolded">
1049 <variable name="result">
1050 <apply-templates select="." mode="LesML:inline">
1051 <with-param name="element-name" select="'b'"/>
1052 <with-param name="element-namespace" select="'&xhtml;'"/>
1053 <with-param name="start-sigil" select="'⦃'"/>
1054 <with-param name="end-sigil" select="'⦄'"/>
1057 <apply-templates select="exsl:node-set($result)/node()" mode="LesML:important"/>
1059 <template match="node()" mode="LesML:important">
1060 <variable name="result">
1061 <apply-templates select="." mode="LesML:inline">
1062 <with-param name="element-name" select="'strong'"/>
1063 <with-param name="element-namespace" select="'&xhtml;'"/>
1064 <with-param name="start-sigil" select="'☞'"/>
1065 <with-param name="end-sigil" select="'☜'"/>
1068 <apply-templates select="exsl:node-set($result)/node()" mode="LesML:emphasized"/>
1070 <template match="node()" mode="LesML:emphasized">
1071 <apply-templates select="." mode="LesML:inline">
1072 <with-param name="element-name" select="'em'"/>
1073 <with-param name="element-namespace" select="'&xhtml;'"/>
1074 <with-param name="start-sigil" select="'⹐'"/>
1075 <with-param name="end-sigil" select="'⹑'"/>