parseBlock method

Shortcode parseBlock(
  1. String input
)

Parses body shortcode.

{{< name x=123 >}}
  This is a block body
{{< /name >}}

Implementation

Shortcode parseBlock(String input) {
  return grammar.blockShortcode.parse(input).value;
}