Files
my-website/templates/shortcodes/subheading.html
2025-06-09 12:14:48 +05:30

11 lines
344 B
HTML

{% set href = text
| regex_replace(pattern="[\\\/#%<>\[\]\(\)`\\^{}\|.]", rep="")
| regex_replace(pattern=" +", rep="-")
| lower
%}
<hr class="border-gray-700 my-4">
<a id="{{ href }}" class="text-3xl font-bold focus:outline-none focus:ring-0" href="#{{ href }}" aria-label="Anchor link for : {{ href }}">
{{ text | safe }}
</a>