I followed the readme instructions and set up profiles for h1, h2, and h3. h1 is working, in the page titles. I added the h2 and h3 profiles with patterns

/<h2.*>.*?<\/h2>/

and

/<h3.*>.*?<\/h3>/

respectively.
I then selected these for use in my input filter. When I am editing the page, I see

Full HTML

* Web page addresses and e-mail addresses turn into links automatically.
* Lines and paragraphs break automatically.
* The signwriter filter 'Papyrus H1' is enabled.
* The signwriter filter 'Papyrus H3' is enabled.
* The signwriter filter 'Papyrus H2' is enabled.

in the filter section below the body, which tells me I have the profiles enabled.

I tried it in Minelli to make sure it wasn't a theme problem, too.

What am I missing? Do I need to change my tpl.php files or template.php?

Comments

awolfey’s picture

Status: Active » Fixed

You may have figured this out by now, but I suspect your replacement pattern is wrong. the ".*" is greedy, and it will combine all your h3 headings into one.

Something like this might do what you want:

<h3.*?<\/h3>

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.