To:
Login Or Sign up

How to move HTML element from one container to another with a Genshi match template?

91 Views Asked by At

From:

<body>
<div id="header">
  <a id="logo">Foo</a>
</div>
<div id="search">
...
</div>
</body>

To:

<body>
<div id="header">
  <a id="logo">Foo</a>

  <!-- inside #header now -->
  <div id="search">
  ...
  </div>
</div>
</body>

Is this doable with Genshi?

0

There are 0 best solutions below