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
The format.liquid.forceArgument property splits custom shortcodes in 11ty across multiple lines, which 11ty does not recognize. 11ty only processes shortcodes that are written in a single line.
When adding this tag to the ignoreTagList property, the plugin throws an error expecting a closing tag.
Steps to Reproduce:
Define multiple-line custom shortcodes with 4 prop's separate by commas.
Set the format.liquid.forceArgument property to 3.
Attempt to build the project using 11ty.
Observe that 11ty does not recognize the multiline shortcodes properly.
Proposed Solution:
Set format.liquid.forceArgument property to a value higher than the shortcodes contain
Don't use commas in shortcode.
Introduce a new property to prevent the splitting of tags across new lines. This property would ensure that tags are kept intact, avoiding issues with shortcode recognition.
I'll create an 11ty issue too. But also need a workaround to exclude tags without closing.
The text was updated successfully, but these errors were encountered:
Æsthetic logic for argument and filter formatting was overhauled and in the next release (which is almost ready for shipping) things work differently, with more rules and it will address the issue you are having. I'll also make it possible to allow singleton type tags to be included in the ignoreTagList.
The format.liquid.forceArgument property splits custom shortcodes in 11ty across multiple lines, which 11ty does not recognize. 11ty only processes shortcodes that are written in a single line.
When adding this tag to the ignoreTagList property, the plugin throws an error expecting a closing tag.
Steps to Reproduce:
Proposed Solution:
I'll create an 11ty issue too. But also need a workaround to exclude tags without closing.
The text was updated successfully, but these errors were encountered: