有两种方法可以将表情符号添加到Markdown文件中:
在大多数情况下,您可以简单地从Emojipedia等来源复制表情符号并将其粘贴到文档中。许多Markdown应用程序会自动以Markdown格式的文本显示表情符号。从Markdown应用程序导出的HTML和PDF文件应显示表情符号。
如:❤️🫶🔥✅😊🤔🥳😁
Tip: 如果您使用的是静态网站生成器,请确保将HTML页面编码为UTF-8。.
点击进入Emojipedia。
如下图,
选择copy即可。
不过这种方法比较麻烦。看下面简单的。
一些Markdown应用程序允许您通过键入表情符号短代码来插入表情符号。这些以冒号开头和结尾,并包含表情符号的名称。
如
去露营了! :tent: 很快回来。
真好笑! :joy:
Note: 注意:您可以使用此表情符号简码列表,但请记住,表情符号简码因应用程序而异。有关更多信息,请参阅Markdown应用程序的文档。
点击进入表情符号简码列表。
这种方式插入表情包很方便!!!
大多时候我们只需要记住相应的单词即可。
如:
:heart_eyes:
显示:
😍
是不是很好玩哈哈哈😋😋😋😋😋😋
一些Markdown处理器允许您创建术语及其对应定义的定义列表。要创建定义列表,请在第一行上键入术语。在下一行,键入一个冒号,后跟一个空格和定义。
First Term
: This is the definition of the first term.
Second Term
: This is one definition of the second term.
: This is another definition of the second term.
HTML看起来像这样:
<dl>
<dt>First Termdt>
<dd>This is the definition of the first term.dd>
<dt>Second Termdt>
<dd>This is one definition of the second term. dd>
<dd>This is another definition of the second term.dd>
dl>
呈现的输出如下所示: