I need change in the HTML of timeline page generated by Fossil-SCM inside the timelineTableCell class td element. Current content of this td element is as follows
<td class="timelineTableCell" style="FOO">
<a class="timelineHistLink" href="FOO">[DF45GH67MD]</a>
<span class="timelineLeaf">Leaf:</span>
<span class="timelineComment">Any comment goes here</span>
(user: <a href="FOO">User Name</a>,tags: <a href="FOO">Lyca+ HLR</a>)
</td>
I require each element in individual td as follows
<td><a class="timelineHistLink" href="FOO">[DF45GH67MD]</a></td>
<td><span class="timelineLeaf">Leaf(empty if not leaf)</span></td>
<td><span class="timelineComment">Any comment goes here</span></td>
<td>User: <a href="FOO">Usr_Name</a></td>
<td>Tags: <a href="FOO">Tag_Name</a></td>
So by this page will look better aligned and more readable. How can I do this?