cyberj / magic-tag

Atom package to delete outter tags

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

magic-tag package

Little package to play with HTML tags

  • ctrl-t ctrl-d Delete outer HTML tags

Before :

<body>
  <ul>
    <li class="myclass">Hello |world</li>
  </ul>
</body>

After :

<body>
  <ul>
    Hello |world
  </ul>
</body>

TODO

  • Select all code inside HTML tags
  • Insert tags around a selection
  • Handle multiple cursors

A screenshot of your package

About

Atom package to delete outter tags

License:MIT License


Languages

Language:CoffeeScript 96.6%Language:HTML 3.4%