Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.76 KB

LSIM.md

File metadata and controls

50 lines (43 loc) · 1.76 KB

LSIM

grandparent = Tag.create(name: 'Grandparent')
parent = grandparent.children.create(name: 'Parent')
child2 = Tag.new(name: 'Second Child')
parent.children << child2
d = Tag.find_or_create_by_path %w[a b c d]
h = Tag.find_or_create_by_path %w[e f g h]
e = h.root
d.add_child(e) # "d.children << e" would work too, of course
h.ancestry_path
=> ["a", "b", "c", "d", "e", "f", "g", "h"]
<!-- wrap the text node with <a href="#"> , <span>, blabla is also OK. Note:text node must immediately follow the <li> tag, with no intervening characters of any kind.  -->
<ul id="ul-data">
  <li>Lao Lao
    <ul>
      <li>Bo Miao</li>
      <li>Su Miao
        <ul>
          <li>Tie Hua</li>
          <li>Hei Hei
            <ul>
              <li>Pang Pang</li>
              <li>Xiang Xiang</li>
            </ul>
          </li>
        </ul>
      </li>
    </ul>
  </li>
</ul>