From: Lady <redacted> Date: Sun, 12 May 2024 07:01:42 +0000 (-0400) Subject: Use square instead of triangular bullet for level 3 X-Git-Tag: 0.2.0~1 X-Git-Url: https://git.ladys.computer/LesML/commitdiff_plain/46ff96d74d0a46cded4729ab19066a73a1e6cd65?ds=inline Use square instead of triangular bullet for level 3 This matches default H·T·M·L bulleting and avoids potential semantic connotations that the triangle bullet may seem to have. --- diff --git a/README.markdown b/README.markdown index 994d911..ea08cb4 100644 --- a/README.markdown +++ b/README.markdown @@ -74,7 +74,7 @@ After this classification, each quoted or unquoted paragraph is further Secondary list items are considered to be nested inside of primary list items which precede them. -- If the paragraph begins with `‣` or `🔡`, it is a tertiary unordered +- If the paragraph begins with `▪` or `🔡`, it is a tertiary unordered or ordered list item (`<html:li class="unordered" data-level="3">` or `<html:li class="ordered" data-level="3">`). Tertiary list items are considered to be nested inside of primary diff --git a/parser.xslt b/parser.xslt index 89ff594..0d676ef 100644 --- a/parser.xslt +++ b/parser.xslt @@ -292,11 +292,11 @@ If a copy of the M·P·L was not distributed with this file, You can obtain one </html:p> </html:li> </when> - <when test="starts-with($text, '‣ ')"> + <when test="starts-with($text, '▪ ')"> <html:li class="unordered" data-level="3"> <html:p> <call-template name="LesML:id-and-contents"> - <with-param name="source" select="substring-after($text, '‣ ')"/> + <with-param name="source" select="substring-after($text, '▪ ')"/> </call-template> </html:p> </html:li>