Skip to content
This repository has been archived by the owner on Aug 21, 2019. It is now read-only.

Fix nested groups #4

Merged
merged 1 commit into from
Aug 1, 2017
Merged

Conversation

ramya-rao-a
Copy link
Contributor

This PR is to fix the parsing of nested groups.

Issue: When parsing nested groups, the inner group gets the outer most node as a parent

Eg: (div>dl>(dt+dd)*2) eventually gets expanded to

    <div>
       <dl></dl>
   </div>
   <dt></dt>
   <dd></dd>
   <dt></dt>
   <dd></dd>

instead of

    <div>
       <dl>
          <dt></dt>
          <dd></dd>
          <dt></dt>
         <dd></dd>
       </dl>
   </div>

cc @sergeche

@sergeche
Copy link
Member

sergeche commented Aug 1, 2017

Published as v0.6.3

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants