[SOLVED] TAL for skipping a surrounding tag

What is the TAL for skipping a surrounding tag?
I need <h1>title to remain.

I remember that I have done this before, without adding another condition, but can't remember how

<a href="${item_url}" tal:condition="do_link ">
   <h1>${title}</h1>
</a>

tal:omit

Thanks, got me in the right direction:

  <a href="${item_url}" tal:omit-tag="dont_link">
      <h1>${title}</h1>
  </a>