You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am learning to use Eleventy and this looked like a useful plugin for its markdown-it parser so I added it to my project.
Line from my package.json: "markdown-it-collapsible": "^2.0.2",
Copied this code from the README
++> Click me!
Hidden text
++>
and pasted it into my Markdown document, only for it to fail to parse as shown
<p>++> Click me!
Hidden text
++></p>
However, changing the > to + like this
+++ Click me!
Hidden text
+++
resulted in a <details> element without an open default state as normal
The text was updated successfully, but these errors were encountered:
RenegadeScooter
changed the title
Plugin fails to parse ++> into details with open state
Plugin fails to parse ++> into <details> with open state
Apr 26, 2024
RenegadeScooter
changed the title
Plugin fails to parse ++> into <details> with open state
Plugin fails to parse ++> into <details> with open state
Apr 27, 2024
I am learning to use Eleventy and this looked like a useful plugin for its
markdown-it
parser so I added it to my project.Line from my package.json:
"markdown-it-collapsible": "^2.0.2",
Copied this code from the README
and pasted it into my Markdown document, only for it to fail to parse as shown
However, changing the
>
to+
like thisresulted in a
<details>
element without anopen
default state as normalWhat's going on here?
The text was updated successfully, but these errors were encountered: