我正在將JIRA中的數據導入Google文檔。其中一個字段是描述,它基本上是HTML文本。使用Google應用程序腳本將HTML表導入Google文檔
有什麼方法可以在Google Doc上「添加」這個HTML文本嗎?或者我真的不得不手動解析它並創建段落,表格等?
的HTML可能看起來如下:
<p>Hello There</p>
<table class='confluenceTable'>
<tbody>
<tr>
<th class='confluenceTh'> Name </th>
<th class='confluenceTh'> Hours </th>
<th class='confluenceTh'> Cost </th>
</tr>
<tr>
<td class='confluenceTd'> Some Person</td>
<td class='confluenceTd'> 1 </td>
<td class='confluenceTd'> CHF 1</td>
</tr>
</tbody>
</table>
你再追加'body'到現有的谷歌文檔或創建一個新的? –
或'html'是否被附加到doc中的'fetch' url? –