Confluence 上的表格加宏中可以有单元格特定的背景颜色吗?
我将此表加宏与 Confluence 一起使用:
http://confluence.atlassian.com/display/CONFEXT/Table-plus+macro
我可以吗有单元格级别格式化吗?我只看到列级格式。
I am using this table-plus macro with Confluence:
http://confluence.atlassian.com/display/CONFEXT/Table-plus+macro
Can I have cell level formatting? I only see column level formatting.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如何执行此操作完全取决于您已获取并启用的插件。内置的表格单元格语法虽然简洁,但无处放置此类自定义。您可能需要查看 Adaptavist 的内容格式化宏插件,尤其是表格宏 - 您可以毫无问题地在单元格上添加 bgcolor 属性。
当然,过了一段时间,它开始看起来很像 html,在这种情况下,您可能只想启用 HTML 插件 随 Confluence 一起提供,但您应该首先意识到这样做的安全隐患;它可能不适合您的环境。
How to do this all depends on what plugins you have obtained and enabled. The built-in table cell syntax, while concise, has nowhere to put such customization. You may want to look at Adaptavist's plugin for Content Formatting Macros, especially the table macro -- you can throw bgcolor attributes on the cells with no problem.
Of course, after a point, it starts to look a lot like html, in which case you may just want to enable the HTML plugin that ships with Confluence, but you should first be aware of the security implications of doing so; it may not be appropriate for your environment.
您可以使用
{html}
或用户定义的宏将样式应用于表格、表格行或表格单元格。以下是三个用于设置表格单元格、表格行或整个表格的背景颜色的宏。
表格单元格背景颜色宏
然后您可以在 wiki 标记表、wiki 宏表或 wiki 编辑器中使用此宏来设置表格单元格的背景颜色。
表格行背景颜色宏
将宏放入要设置的行的单元格之一中。
将此宏与 {tblcellbg} 一起使用可以更好地控制单元格颜色。
表背景颜色宏
将宏放入表中的单元格之一。
可与 {tblrowbg} 和 {tblcellbg} 一起使用。
JavaScript
或者,包装设置单元格/行/表格背景颜色 {html} 的 JavaScript 并将其作为代码放入表格中。
JS 表格单元格 BG 颜色
JS 表格行 BG 颜色
JS 表格 BG 颜色
You can apply a style to the table, table row or table cell using
{html}
or user defined macro.Here are three macros for setting the background colour for a table cell, table row or the whole table.
Table Cell Background Colour macro
You can then use this macro in a wiki markup table, wiki macro table or into the wiki editor to set the background colour of the table cell.
Table Row Background Colour macro
Put the macro in one of the cells in the row to be set.
Use this macro with {tblcellbg} for finer control of cell colours.
Table Background Colour macro
Put the macro in one of the cells in the table.
Can be used with {tblrowbg} and {tblcellbg}.
JavaScript
Alternatively, wrap the javascript which sets the cell/row/table background colour {html} and put it into the table as code.
JS Table Cell BG Colour
JS Table Row BG Color
JS Table BG Color
使用 {table-plus} 宏无法做到这一点。但是,您可以在 Confluence 中使用更高级的表格格式化插件来完成此操作,如 由扎克描述。
It is not possible to do this with the {table-plus} macro. However, you can do it in Confluence with a more advanced table formatting plugin as described by Zac.