delimitedIndent: Does it support case-insensitivity?

Hi there,

I currently need to support a syntax like

to start
  something
end

I am trying to use delimitedIndent to facilitate its indentation strategy. However, I need to support multiple forms of end since the language is case insensitive. So the current way of my implementation delimitedIndent({ closing: "end" }) is insufficient - is there any way to make the delimitedIndent case insensitive or should I use a different helper function for that?

Thanks!

You’ll probably need to write a custom indentation function (but those can be pretty simple, typically).