在狮身人面像文件中显示/隐藏文本的一部分(问题/答案)

问题描述 投票:0回答:1

我想知道是否有一种方法可以将指令添加到带有隐藏部分的狮身人面像文档中,该部分可以通过单击打开。

基本上就像您可以找到https://realpython.com/pandas-python-explore-dataset/(搜索显示/隐藏):

enter image description here

python-sphinx
1个回答
1
投票

这是Mastering Plone Training documentation中的一个有效示例。

这是source code

..  admonition:: Solution
    :class: toggle
    * Go to the dexterity-controlpanel (http://localhost:8080/Plone/@@dexterity-types)
    * Click on *Page* (http://127.0.0.1:8080/Plone/dexterity-types/Document)
    * Select the tab *Behaviors* (http://127.0.0.1:8080/Plone/dexterity-types/Document/@@behaviors)
    * Check the box next to *Lead Image* and save.

[C0显示已将自定义JavaScript和样式添加到主题。

_ static / custom.css

commit history

_ templates / page.html

.toggle {
    background: none repeat scroll 0 0 #e7f2fa;
}

.toggle .admonition-title {
    display: block;
    clear: both;
}

.toggle .admonition-title:after {
    content: " ▼";
}

.toggle .admonition-title.open:after {
    content: " ▲";
}
© www.soinside.com 2019 - 2024. All rights reserved.