From: Lady <redacted> Date: Sat, 22 Mar 2025 02:32:18 +0000 (-0400) Subject: Adjust order of precedence for inlines X-Git-Tag: 0.4.0~1 X-Git-Url: https://git.ladys.computer/LesML/commitdiff_plain/94f395fe0062092ce69390b661f8543a3fbf5b7b?ds=sidebyside Adjust order of precedence for inlines I think this ordering makes a little bit more sense. --- diff --git a/README.markdown b/README.markdown index 6b43717..29815e5 100644 --- a/README.markdown +++ b/README.markdown @@ -205,10 +205,7 @@ Markup within paragraphs is delimited with·out exception by pairs of - The characters `⸨` and `⸩` indicate parenthetical content (`<html:small>`). -- The characters `☞︎` and `☜︎` indicate strong importance - (`<html:strong>`). - -- The characters `⹐` and `⹑` indicate emphasis (`<html:em>`). +- The characters `` ` `` and `´` indicate code (`<html:code>`). - The characters `⟪` and `⟫` indicate titles (`<html:cite>`). @@ -219,7 +216,10 @@ Markup within paragraphs is delimited with·out exception by pairs of - The characters `⦃` and `⦄` indicate keyword highlighting (`<html:b>`). -- The characters `` ` `` and `´` indicate code (`<html:code>`). +- The characters `☞︎` and `☜︎` indicate strong importance + (`<html:strong>`). + +- The characters `⹐` and `⹑` indicate emphasis (`<html:em>`). Once the tree is built as above, it is remediated into its final form by the following steps :— diff --git a/parser.xslt b/parser.xslt index a47b5bb..6e0d82a 100644 --- a/parser.xslt +++ b/parser.xslt @@ -1004,24 +1004,14 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one <with-param name="end-sigil" select="'⸩'"/> </apply-templates> </variable> - <apply-templates select="exsl:node-set($result)/node()" mode="LesML:important"/> - </template> - <template match="node()" mode="LesML:important"> - <variable name="result"> - <apply-templates select="." mode="LesML:inline"> - <with-param name="element-name" select="'html:strong'"/> - <with-param name="start-sigil" select="'☞'"/> - <with-param name="end-sigil" select="'☜'"/> - </apply-templates> - </variable> - <apply-templates select="exsl:node-set($result)/node()" mode="LesML:emphasized"/> + <apply-templates select="exsl:node-set($result)/node()" mode="LesML:code"/> </template> - <template match="node()" mode="LesML:emphasized"> + <template match="node()" mode="LesML:code"> <variable name="result"> <apply-templates select="." mode="LesML:inline"> - <with-param name="element-name" select="'html:em'"/> - <with-param name="start-sigil" select="'⹐'"/> - <with-param name="end-sigil" select="'⹑'"/> + <with-param name="element-name" select="'html:code'"/> + <with-param name="start-sigil" select="'`'"/> + <with-param name="end-sigil" select="'´'"/> </apply-templates> </variable> <apply-templates select="exsl:node-set($result)/node()" mode="LesML:titled"/> @@ -1055,13 +1045,23 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one <with-param name="end-sigil" select="'⦄'"/> </apply-templates> </variable> - <apply-templates select="exsl:node-set($result)/node()" mode="LesML:code"/> + <apply-templates select="exsl:node-set($result)/node()" mode="LesML:important"/> </template> - <template match="node()" mode="LesML:code"> + <template match="node()" mode="LesML:important"> + <variable name="result"> + <apply-templates select="." mode="LesML:inline"> + <with-param name="element-name" select="'html:strong'"/> + <with-param name="start-sigil" select="'☞'"/> + <with-param name="end-sigil" select="'☜'"/> + </apply-templates> + </variable> + <apply-templates select="exsl:node-set($result)/node()" mode="LesML:emphasized"/> + </template> + <template match="node()" mode="LesML:emphasized"> <apply-templates select="." mode="LesML:inline"> - <with-param name="element-name" select="'html:code'"/> - <with-param name="start-sigil" select="'`'"/> - <with-param name="end-sigil" select="'´'"/> + <with-param name="element-name" select="'html:em'"/> + <with-param name="start-sigil" select="'⹐'"/> + <with-param name="end-sigil" select="'⹑'"/> </apply-templates> </template> </transform>