如何一次将文本行全部转换为表格

时间:2019-06-20 19:05:38

标签: emmet

我有一长串这样的文字:

 
# --argument
              most of the times comes before arguments
# sudo
              superuser allows you to run commands as superuser
# logout
              logs out the current user.

(这只是其中的一部分),我想使用Emmet(缩写包装)将其转换为完整的表

我已经尝试过(用缩写换行):

tr*>td{$#}+td{$#}

但没有给我预期的结果

这是我的例外:(仅HTML部分)

table, th, td {
border-collapse: collapse;
border:2px solid;
padding: 10px;
}
<table>
<tr>
  <td># --argument</td>
  <td>most of the times comes before arguments</td>
</tr>
<tr>
  <td># sudo</td>
  <td>superuser allows you to run commands as superuser</td>
</tr>
<tr>
  <td># logout</td>
  <td>logs out the current user.</td>
</tr>
</table>

谢谢!

0 个答案:

没有答案