使用特殊技巧

空格
  要想打出两个空格,使用以下符号:

  或全角空格「  」

发布时间
  如需修改文章时间节点,可添加如下代码在文章开头并通过如下网站转换时间戳。

<!-- ##{"timestamp":1490764800}## -->

使用强调信息

  在 GitHub Flavored Markdown(GFM)或支持自定义标签的平台中,可通过特定语法添加可视化警示块,提升内容可读性。以下是 5 种常用标签及其场景:

使用方式

> [!NOTE]
> Useful information that users should know, even when skimming content.
> [!TIP]
> Helpful advice for doing things better or more easily.
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.

效果

Note

Useful information that users should know, even when skimming content.

Tip

Helpful advice for doing things better or more easily.

Important

Key information users need to know to achieve their goal.

Warning

Urgent info that needs immediate user attention to avoid problems.

Caution

Advises about risks or negative outcomes of certain actions.

使用模糊文字或插入图片、视频等

  GitHub 对 iframe 等标签有安全限制,但通过特定语法(如 Gmeek-html 前缀)可实现自定义 HTML 内容嵌入。以下是常用场景的规范写法:

使用方式

  在需要添加html标签的位置使用code方式,并且后面紧跟着Gmeek-html,然后才是html标签。

模糊文字

`Gmeek-html<span class="spoiler">"这里是隐藏文字哦"</span>`

"这里是隐藏文字哦"

图片img

`Gmeek-html<img src="https://cdn-ak.f.st-hatena.com/images/fotolife/f/fox6/20250427/20250427214923.jpg">`

内嵌框架iframe-网站

`Gmeek-html<iframe src="https://music.meekdai.com/#61" width="100%" height="460px" frameborder="0" allowfullscreen="true"></iframe>`

内嵌框架iframe-歌曲

`Gmeek-html<iframe style='border-radius:12px' src='https://open.spotify.com/embed/track/0U3fV7K4WFfVRgLGEAKh3g?utm_source=generator' width='100%' height='152' frameBorder='0' allowfullscreen='' allow='autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture' loading='lazy'></iframe>`

内嵌框架iframe-视频

`Gmeek-html<iframe src="//player.bilibili.com/player.html?isOutside=true&aid=1604800941&bvid=BV1qm421M7Xs&cid=1557311907&p=1&autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="100%" height="460px"></iframe>`

其他
  上面仅仅是示例了一些经常会使用到的html标签,其他html标签同样也是支持的。