Can I configure Kirbytext to skip the H1, which I reserved for page titles?
I’m using visual markdown field by @DieserJonas which allows you to reassign the toolbar buttons, but in the textarea it still inputs the correct number of hashtags.
I want the user to be able to input:
# This is a heading
## This is a smaller heading
and have it render as
<h2>This is a heading</h2>
<h3>This is a smaller heading</h3>
To simplify things for the end-user inputting text. So I don’t need to explain that you need two hashtags to insert a heading, which might raise the question why not one hashtag? I’m sure I’m just overthinking it. Still my biggest issue with Kirby (even though I love it to death), is the lack of a proper wysiwyg. Markdown is great for developers but not very intuitive for the average joe.
I know about the wysiwyg field plugin but I have a few different issues with that one
Anyway, thank you for the input texnixe. I’ll look into the post-filters. In the worst case, I’ll rely on the end-user not messing up.
If in doubt, you could provide some help text, why not to use headlines with a single hash. For users with a little more understanding, it might even be confusing if a first level headline is rendered as h2.