如何使用 Confluence 5.7 将数据粘贴到 table 中?
How do I paste data into a table using Confluence 5.7?
我有一堆表格数据需要粘贴到 Confluence 网页上。通常的机制对我来说不能正常工作。
什么"usual mechanisms?"
将数据复制到 Excel 然后复制/粘贴到 Confluence。
使用 wiki 标记格式化内容,意思是:
- 列header 单元格
之前/之间/之后的双条
- 数据单元格之前/之间/之后的单条柱状图
并将其粘贴到 Wiki 页面。
第一个选项给了我一个table,但它没有显示网格线,排序也不起作用。
第二个选项将标记放入页面,但不对其执行任何操作。如果我转到第一行并在最后一个小节后点击 ,它会将该行变成带有 header 行的 table (因为它有 double-bars)。如果我转到第二行并在最后一个柱后点击 ,它会创建一个单独的 TABLE,其中包含数据。我可以转到第一个 table(从 header 行创建),告诉 Confluence 在下面添加一行,然后将第二个 table 中的数据复制到第二行,它将做吧。但我需要为每一行数据重复该序列。
我过去刚经历过这种情况。当只有几排时,没什么大不了的。但我正在尝试创建一个包含 200 多行的 table。该序列不接受table 的工作量。
关于如何使它工作的建议?
根据 this link,我认为这是 Confluence 版本的错误,至少就排序而言是这样。
查看 Confluence JIRA,Excel 的 copy/pasting 在开发过程中似乎出现了几个问题。至少有一个解决方法:
Workaround:
Go to the editor again
Cut out the (unsortable) table
Paste it again
Mark the first row as Header
Save the page
-> Now the table is sortable
If that does not work, please install the The confluence source editor, then edit the page to:
Remove the row " "
Replace all "td" tag to "th" tag for the first row of the table. For example, the column name "Number" will need to change from "Number" to "Number".
要使用第二个选项插入大 tables,您需要先按 Ctrl + Shift + D,然后以 wiki 标记形式粘贴到 table。
如果您知道宏名称和参数,请将 table 包裹在任何需要的宏中。在 Confluence 5 GUI 中创建 table 之后,这可能是一个严肃的 PITA。
点击插入,结果table将被转换为新的wiki格式进入页面。
我走了一条迂回的路线来完成这个:
- 用我的信息和 tab-separated 字段制作了一个文本文件
- 将此数据粘贴到 Google 表格
- 复制了 Google 表格中的单元格
- 将它们粘贴到 Confluence 中的 pre-made table
它仍然比手动编写每个字段要快。
我的 Excel 有 1 万行,有些行有背景色。为了保持单元格背景颜色,我遵循了以下步骤
将 Excel 文件保存为 HTML 文件
打开HTML代码,复制完整的TABLE(HTML代码)
在 Confluence 页面中插入 HTML 宏
- 插入您的代码并查看单元格颜色是否会保持不变。
我有一堆表格数据需要粘贴到 Confluence 网页上。通常的机制对我来说不能正常工作。
什么"usual mechanisms?"
将数据复制到 Excel 然后复制/粘贴到 Confluence。
使用 wiki 标记格式化内容,意思是:
- 列header 单元格 之前/之间/之后的双条
- 数据单元格之前/之间/之后的单条柱状图
并将其粘贴到 Wiki 页面。
第一个选项给了我一个table,但它没有显示网格线,排序也不起作用。
第二个选项将标记放入页面,但不对其执行任何操作。如果我转到第一行并在最后一个小节后点击
我过去刚经历过这种情况。当只有几排时,没什么大不了的。但我正在尝试创建一个包含 200 多行的 table。该序列不接受table 的工作量。
关于如何使它工作的建议?
根据 this link,我认为这是 Confluence 版本的错误,至少就排序而言是这样。
查看 Confluence JIRA,Excel 的 copy/pasting 在开发过程中似乎出现了几个问题。至少有一个解决方法:
Workaround:
Go to the editor again
Cut out the (unsortable) table
Paste it again
Mark the first row as Header
Save the page
-> Now the table is sortable
If that does not work, please install the The confluence source editor, then edit the page to:
Remove the row " "
Replace all "td" tag to "th" tag for the first row of the table. For example, the column name "Number" will need to change from "Number" to "Number".
要使用第二个选项插入大 tables,您需要先按 Ctrl + Shift + D,然后以 wiki 标记形式粘贴到 table。
如果您知道宏名称和参数,请将 table 包裹在任何需要的宏中。在 Confluence 5 GUI 中创建 table 之后,这可能是一个严肃的 PITA。
点击插入,结果table将被转换为新的wiki格式进入页面。
我走了一条迂回的路线来完成这个:
- 用我的信息和 tab-separated 字段制作了一个文本文件
- 将此数据粘贴到 Google 表格
- 复制了 Google 表格中的单元格
- 将它们粘贴到 Confluence 中的 pre-made table
它仍然比手动编写每个字段要快。
我的 Excel 有 1 万行,有些行有背景色。为了保持单元格背景颜色,我遵循了以下步骤
将 Excel 文件保存为 HTML 文件
打开HTML代码,复制完整的TABLE(HTML代码)
在 Confluence 页面中插入 HTML 宏
- 插入您的代码并查看单元格颜色是否会保持不变。