组织模式CSS:将文本添加到代码块类

时间:2019-05-18 21:42:00

标签: css org-mode org-babel

当我检查组织模式HTML输出时,我会看到此内容是代码块的结果:

<< / p>

div class="org-src-container">
<pre class="src src-sml" id="org4819d0f">area_circle<span style="color: #8c8c8c;">(</span>3.0<span style="color: #8c8c8c;">)</span>
</pre>
</div>

<pre class="example">
val it = 28.2743338823 : real
</pre>

我希望结果块以RESULTS:为前缀,因为在运行代码块后,组织模式本身会生成该块。所以我发现了这个:

pre.example:before {
    content: "RESULTS: ";
}

这似乎可以(级联)地进行此操作:

pre.example {
    margin-left:2%; 
    margin-right:auto;
    margin-top: 0;   
}

大结局?否。因为“其他” example块即

#+begin_example
Here is a nice example appearing in mono-sans
#+end_example

也在使用此pre.example类,该类通过添加不需要的RESULTS:来弄乱。我尝试了各种组合

.org-src-container example {
    &:before{
    content: "RESULTS: ";
    }
}

基于另一个post -无济于事。因此,是的,我只需要一个代码块的结果即可有RESULTS:而不需要其他示例内容。当然,如果有一种方法可以简单地告诉org-mode像文件中那样逐字地包括整个文本,那将是首选方法……

0 个答案:

没有答案