Skip to content

Instantly share code, notes, and snippets.

@akouryy
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akouryy/f4372c70a28924570e15 to your computer and use it in GitHub Desktop.
Save akouryy/f4372c70a28924570e15 to your computer and use it in GitHub Desktop.
ul&li to table
* aa * b
* c
* d
* e * f * g
* h
* ii * j
* k
* l
[bad]
* aa * b
* c
* d
* e * f * g
* h
* ii * j
* k
* l
<ul>
<li><div data-depth="1">a</div>
<ul>
<li><div data-depth="2">b</div></li>
<li><div data-depth="2">c</div></li>
<li><div data-depth="2">d</div></li>
</ul>
</li>
<li><div data-depth="1">ee</div>
<ul>
<li><div data-depth="2">f</div>
<ul>
<li><div data-depth="3">g</div></li>
<li><div data-depth="3">h</div></li>
</ul>
</li>
<li><div data-depth="2">ii</div>
<ul>
<li><div data-depth="3">j</div></li>
<li><div data-depth="3">k</div></li>
</ul>
</li>
</ul>
</li>
<li><div data-depth="1">l</div></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment