Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 480 Bytes

File metadata and controls

37 lines (32 loc) · 480 Bytes

PostHTML Tree

Format

HTML

<a class="animals" href="#">
  <span class="animals__cat" style="background: url(cat.png)">Cat</span>
</a>

JSON

[
  {
    tag: 'a',
    attrs: {
      class: 'animals',
      href: '#'
    },
    content: [
      '\n    ',
      {
        tag: 'span',
        attrs: {
          class: 'animals__cat',
          style: 'background: url(cat.png)'
        },
        content: ['Cat']
      },
      '\n'
    ]
  }
]