Hello all,
I tried many things but i'm asking for your help because i'm doing stupid things now ! here is what i want to do. I want to transform a html file (i'm not composing) to another. I want to move some parts of the body to div. Here is the original one :
<body>
text+images part 1
<div class="sep">some text</div>
tex+images part2
<div class="sep">some text</div>
text+images part3
</body>
and here is what i want :
<body>
<div id="div_1">
text+images part 1
</div>
<div id="div_2">
tex+images part2
</div>
<div id="div_3">
text+images part3
</div>
...
</body>
In fact the div with class="sep" will be used as separator and won't appear in the final result.
I hope i am clear and someone could help me. Best regards. Dominique.