[pmwiki-users] Incorporating a double underline into the default pmwiki skin
Hans Bracker
design at softflow.uk
Wed May 22 08:07:57 PDT 2024
Hi Dave,
Wednesday, May 22, 2024, 2:45:13 PM, you wrote:
> My sites are back up and running pmwiki-2.3.32 (VersionNum=2003032) using the default pmwiki skin.
> How can I modify some portion of the default skin or config to allow me to utilize double-underline markup "====" again?
Add to your config.php this markup rule:
## add double line horizontal rule markup ====
Markup('^====','>^->','/^====+/','<:block,1> <hr class="hr-double" />');
and add to your css/local.css this css rule:
.hr-double {
margin:0;
border: none 0;
border-top:1px solid #aaa; /*#003B62; */
border-bottom:1px solid #aaa;
background:#fff;
height:3px;
}
Triad skin has the same in its skin.php and its layout-main.css
Hope this helps!
cheers,
Hans
More information about the pmwiki-users
mailing list