Hi,
displaying post or page content without the page summary has popped up a couple of times around here (for example: /forum/archive/content-without-summary-t3240), and most answers loop back to the same answer https://learn.getgrav.org/16/cookbook/twig-recipes#displaying-page-content-without-summary suggesting this solution:
{% set content = page.content|slice(page.summary|length) %}
However, this does only work for cases where the summary is of a set (standard) length, and is not accounting for use of the "===" summary delimiter.
In my case, summaries will be of unknown (and varying) length, yet the contents excluding the summary need be displayed at one point on the page.
Any suggestions how to achieve this? I'm guessing I'll need a custom plugin?