更改confluence中内联等宽代码的格式,使其突出显示
Change the format of the inline monospaced code in confluence to make it stand out
如何在 confluence 中更改内联等宽代码的格式,使其像在 GitHub markdown 中一样突出,其中它的背景是灰色的。在合流中,内联代码似乎并不突出。
在 Confluence 服务器中
您可以前往 Confluence 管理中心 |观感 |自定义 HTML |在 HEAD 的末尾添加:
<style>
#com-atlassian-confluence code {
margin: 0 2px;
padding: 0px 5px;
border: 1px solid #ddd;
background-color: #f5f5f5;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
</style>
或者,您可以将其添加到自定义样式表中。
在 Confluence 云中
这是不可能的。期间.
如何在 confluence 中更改内联等宽代码的格式,使其像在 GitHub markdown 中一样突出,其中它的背景是灰色的。在合流中,内联代码似乎并不突出。
在 Confluence 服务器中
您可以前往 Confluence 管理中心 |观感 |自定义 HTML |在 HEAD 的末尾添加:
<style>
#com-atlassian-confluence code {
margin: 0 2px;
padding: 0px 5px;
border: 1px solid #ddd;
background-color: #f5f5f5;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
</style>
或者,您可以将其添加到自定义样式表中。
在 Confluence 云中
这是不可能的。期间.