Frontend
Development
& Succulent
-
Unicode Arrows
2023年 03月 27日U+2190←U+2191↑U+2192→U+2193↓U+2194↔U+2195↕U+2196↖U+2197↗U+2198↘U+2199↙U+219a↚U+219b↛U+219c↜U+219d↝U+219e↞U+219f↟U+21a0↠U+21a1↡U+21a2↢U+21a3↣U+21a4↤U+21a5↥U+21a6↦U+21a7↧U+21a8↨U+21a9↩U+21aa↪U+21ab↫U+21ac↬U+21ad↭U+21ae↮U+21af↯U+21b0↰ -
Jekyll网站设置谷歌分析
2023年 03月 25日谷歌分析提供免费网络分析服务,用于跟踪和报告网站流量,将谷歌分析添加到Jekyll网站十分简单。
首先登录谷歌分析并新建一个媒体资源, 以获取网站的跟踪ID,可以在
管理 > 媒体资源 > 跟踪信息 > 跟踪代码
下找到跟踪ID。然后在
_includes
文件夹新建名为google-analytics.html
的文件,并写入以下代码:阅读全文<script> window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; ga('create', '{{ site.google_analytics }}', 'auto'); ga('send', 'pageview'); </script> <script async src='https://www.google-analytics.com/analytics.js'></script>
-
JavaScript in Markdown
2023年 03月 22日Step 1, create a new file named
YourScript.js
in the site directory.Step 2, write the following code in the YAML of the Markdown document.
--- title: YourTitle customjs: - https://yoursite/yourscript.js ---
Step 3, introduce JavaScript into Markdown.
{% for js in page.customjs %} <script src="{{ js }}"></script> {% endfor %}
-
本年倒计时
2023年 03月 20日EXPIRED
-
MarkDown 目录树锚定位
2023年 03月 19日我是二级标题
阅读全文