Brian Tibbels writes:
« HTML content follows »
Many thanks Petko - how feasible is it to allow any attribute regardless, in the way that html tags work so that any attribute can be added to any tag?

You probably want http://www.pmwiki.org/wiki/Cookbook/EnableHTML .

Petko


On 11 November 2013 06:00, Petko Yotov wrote:
   Brian Tibbels writes:
In attempting to build a site in Bootstrap3 and I am trying to add/insert :

     class="form-horizontal" role="form"

     to (:input auth_form :)

The (:input auth_form:) markup does not allow custom attributes up to version 2.2.57, but I enabled them in Subversion so this will be easier in the next verison.

   In config.php, first we enable the role attribute:

 $PostConfig[create_function('$pn','$GLOBALS["InputAttrs"] []="role";')]=100;


   Then we redefine the auth_form markup (not needed in 2.2.58 and later):

    $InputTags['auth_form'] = array(
      ':html' => "<form \$InputFormArgs>\$PostVars",
   'action' => str_replace("'", '%37', stripmagic($_SERVER['REQUEST_URI'])),
      'method' => 'post',
      'name' => 'authform');


   Then, in the wiki page (eg. Site.AuthForm) we use:

    (:input auth_form class="form-horizontal" role="form":)

   Petko


_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to