我想使用Markdown存储文本信息。但快速搜索显示Markdown不支持颜色。堆栈溢出也不支持颜色。与GitHub markdown的情况相同。

是否有允许彩色文本的markdown风格?


当前回答

在Jekyll中,我可以为粗体元素添加一些颜色或其他样式(也可以与所有其他元素一起使用)。

我用{:开始“造型”并结束它}。元素和大括号之间不允许有空格!

**My Bold Text, in red color.**{: style="color: red; opacity: 0.80;" }

将被转换为html:

<strong style="color: red; opacity: 0.80;">My Bold Text, in red color.</strong>

其他回答

这应该更短:

<font color='red'>test blue color font</font>

这适用于记录笔记的乔普林:

<span style="color:red">text in red</span>

在Jupyter笔记本中添加任何给定颜色的Hading。

将显示为笔记本中的标题,如果开头不使用##,将显示为给定颜色的普通文本

虽然Markdown不支持颜色,但如果你不需要太多,你总是可以牺牲一些支持的样式,使用CSS重新定义相关的标记,使其变为颜色,并删除格式,或者不删除。

例子:

// resets
s { text-decoration:none; } //strike-through
em { font-style: normal; font-weight: bold; } //italic emphasis


// colors
s { color: green }
em { color: blue }

另请参阅:如何将em标记重新设置为粗体而不是斜体

然后在标记文本中

~~This is green~~
_this is blue_

将此命令放入RMarkdown标头

header-includes: \usepackage{xcolor}

然后使用此命令为文本上色

\textcolor{green}{Text is green!}