Anchors is a Perch Template Filter that adds IDs to HTML headings h1-h6 (based on their content) in a textarea field.

Installation

include('filters/PipitTemplateFilter_anchors.class.php');

You also need to enable template filters in your config:

define('PERCH_TEMPLATE_FILTERS', true);

Usage

<perch:content id="text" type="textarea" label="Text" markdown editor="simplemde" filter="anchors">

Use case

You may have a textarea field with a Markdown editor:

<perch:content id="text" type="textarea" label="Text" markdown editor="simplemde">

You may enter a heading like so:

# This is a heading

Regular output is:

<h1>This is a heading</h1>

With the anchors template filter:

<h1 id="this-is-a-heading">This is a heading</h1>

This is useful for long blog posts and documentation as you can share links to particular section /docs/#how-to-configure.

link