Markdown 高亮
这并不常见,但某些 Markdown 处理器允许您突出显示文本。结果如下所示。要突出显示单词,请在单词前后使用两个等号 (==
)。
I need to highlight these ==very important words==.
渲染的输出如下所示1:
I need to highlight these very important words.
或者,如果 Markdown 应用程序支持 HTML,则可以使用 HTML 标记。mark
I need to highlight these <mark>very important words</mark>.
搭建的 Hugo 网站不支持此功能,以下效果是用 HTML 标记来实现的。 ↩︎