- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法在 org-babel
的 #+RESULTS
block 中启用字体粗细和颜色?
例如,使用 --color
选项调用 ls
会在 shell 中呈现预期的字体粗细和颜色,但在 #+结果
block :
#+BEGIN_SRC shell
ls --color ~/
#+END_SRC
#+RESULTS:
| Applications |
| Desktop |
| Documents |
| Downloads |
| Library |
...
Screenshot of ls
with and without --color
in the terminal
另一个例子是node
模块chalk
,它以明文形式出现在#+RESULTS
block 中:
#+BEGIN_SRC js
const chalk = require('chalk');
console.log(chalk.red('Hello world!'));
#+END_SRC
#+RESULTS:
: Hello world!
: undefined
最佳答案
这是我想出的。当光标位于代码块(而不是结果 block )上时运行它,将其用作交互式函数。您需要安装 xterm-color
包。
(defun org-babel-color-results()
"Color org babel results.
Use the :wrap header argument on your code block for best results.
Without it, org may color overtop with whatever default coloring it
uses for literal examples.
Depends on the xterm-color package."
(interactive)
(when-let ((result-start (org-babel-where-is-src-block-result nil nil)))
(save-excursion
(goto-char result-start)
(when (looking-at org-babel-result-regexp)
(let ((element (org-element-at-point)))
(pcase (org-element-type element)
(`fixed-width
(let ((post-affiliated (org-element-property :post-affiliated element))
(end (org-element-property :end element))
(contents (org-element-property :value element))
(post-blank (org-element-property :post-blank element)))
(goto-char post-affiliated)
(delete-region post-affiliated end)
(insert (xterm-color-filter contents))
(org-babel-examplify-region post-affiliated (point))
(insert (make-string post-blank ?\n ))
))
((or `center-block `quote-block `verse-block `special-block)
(let ((contents-begin (org-element-property :contents-begin element))
(contents-end (org-element-property :contents-end element)))
(goto-char contents-begin)
(let ((contents (buffer-substring contents-begin contents-end)))
(delete-region contents-begin contents-end)
(insert (xterm-color-filter contents)))))))))))
或者添加一个钩子(Hook)
(add-hook 'org-babel-after-execute-hook 'org-babel-color-results)
This link是我的灵感。
我还没有弄清楚的一件事是,虽然当您不在代码块上使用 :wrap
参数时它会为文本着色,但 Org Literal Examples 的着色:
似乎覆盖了它。但是,您可以看到应用了颜色,只需删除 :
预期有颜色的行即可。
关于emacs - 在 org-babel 的结果 block 中启用字体粗细和颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45812085/
我有一个格式良好的单元格范围,具有不同的边框线粗细(其中一些是中等厚度,其中一些是薄的,没有特定的图案)。我想运行一个将边框颜色更改为灰色的宏,但每次执行此操作时,它都会自动将所有边框粗细更改为 xl
我可以使用百分比使我的图像/div 具有响应性。 如何使字体大小响应不同的屏幕大小? 最佳答案 我最近偶然发现了这个问题,并为此编写了一个适合我需要的解决方案。也许您会发现您也可以将它合并到您的 CS
在 iOS 8 中,为了获得 Helvetica Neue 的细变体,以下代码可以工作 UIFont.systemFontOfSize(50, weight: UIFontWeightThin) 在
我想将 matplotlib 绘图中使用的默认字体更改为 Windows 下的 Segoe UI。我可以通过像这样改变 rcParams 来做到这一点 import matplotlib matplo
我想知道是否有人知道基于 Bresenham 的线算法或任何类似算法绘制具有特定粗细的线的任何算法。 再想一想,我一直在想,对于每个 setPixel(x,y) 我只是画一个圆圈,例如: filled
我正在尝试自定义我已经拥有的用于选择 Google 字体和更新预览 DIV 的功能之一,但是我还想添加“字体大小”、“字体粗细”、“字母间距”等,但是此功能仅在您单击“主字体选择器”组合框时才有效,我
我正在使用 RaphaelJS 在 IE8 中调试一些性能问题。我们正在 raphael 中从大约 1000 个元素和文本节点构建图形,特别是一个图形在渲染时给我们带来了问题。在 IE9 中,根据机器
我是一名优秀的程序员,十分优秀!