我需要更改由 Fossil-SCM 在timelineTableCell类 td 元素中生成的时间线页面的 HTML。这个 td 元素的当前内容如下
<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>
我要求单个 td 中的每个元素如下
<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>
所以通过这个页面看起来会更好对齐和更具可读性。我怎样才能做到这一点?