Here:

http://cookbook.hobocentral.net/manual/dryml-guide#nested_parameters

This:

<def tag="collection">
  <h2 param="heading"></h2>
  <ul>
    <li repeat>
      <card param>
    </li>
  </ul>
</def>

Should be:

<def tag="collection">
  <h2 param="heading"></h2>
  <ul>
    <li repeat>
      <card param/>
    </li>
  </ul>
</def>

As written you'll get a parse error:

script/server:3
...
Missing end tag for 'card' (line 31) (got "li")
Line: 32
Position: 0

-bret

-- 
You received this message because you are subscribed to the Google Groups "Hobo 
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/hobousers?hl=en.

Reply via email to