logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Mason::Manual::Cookbook - Recipes for common Mason tasks

Author

       Jonathan Swartz <swartz@pobox.com>

Name

       Mason::Manual::Cookbook - Recipes for common Mason tasks

Recipes

HTMLlistformedfromarray
           <ul>
           % foreach $item (@list) {
             <li><% $item %></li>
           % }
           </ul>

   HTMLtableformedfromlistofobjects
           <table>
             <tr><th>Foo</th><th>Bar</th><th>Baz</th></tr>
           % foreach my $obj (@objects) {
             <tr>
               <td><% $obj->foo %></td>
               <td><% $obj->bar %></td>
               <td><% $obj->baz %></td>
             </tr>
           % }
           </table>

See Also

       Mason

See Also