Markdown语法学习
Markdown Basic SyntaxMarkdown Extended Syntax几个#就是第几级标题 基础用法标题“#” Markdown语法 HTML语法 预览效果 # 一级标题 <h1>Heading level 1</h1> Heading level 1 ## 二级标题 <h2>Heading level 2</h2> Heading level 2 ### 三级标题 <h3>Heading level 3</h3> Heading level 3 #### 四级标题 <h4>Heading level 4</h4> Heading level 4 ##### 五级标题 <h5>Heading level 5</h5> Heading level 5 ###### 六级标题 <h6>Heading level 6</h6> Heading level...
代码块的用法
主要分享一下 Hexo 中代码块的高级用法…… 方式一: 使用“codeblock”代码块123{% codeblock [lang:language] [title] [url] [link text] %}代码内容{% endcodeblock %} 从左到右一一对应: 语言 标题 源码文件下载地址 下载地址的文字以下是例子 Cpp Hello WorldDownload1234567#include<iostream>;using namespace std;int main(){ cout << "Hello World" << endl; return 0;} 123456789{% codeblock Cpp Hello World lang:cpp http://test1.com/helloworld.cpp Download %}#include<iostream>;using namespace...
标签外挂
123{% note [color] [icon] [style] %}Any content (support inline tags too.io).{% endnote %} 图标地址
少前世界观
少前世界观时间线,少前ip宇宙的魅力
test
测试流程图 flowchart TB A["用户确认订单"] --> B["进入支付页面"] B --> C["显示支付信息"] C --> D["选择支付方式"] D -->|"信用支付"| E["调用信用支付接口"] D -->|"比特币支付"| F["调用比特币支付接口"] E --> G["生成支付订单"] F --> G G --> H["用户跳转至支付平台支付页面"] H --> I["用户进行实际支付操作"] I --> J{"查看支付结果"} J -->|"成功"| K["更新订单状态为“已付款”"] K --> L["通知商家发货"] ...
hexo写博客
https://fuguigui.github.io/hexo2/ 表格站点 地址 介绍Fluid Docs https://hexo.fluid-dev.com/docs/ Fluid 官方文档Hexo-theme-fluid https://github.com/fluid-dev/hexo-theme-fluid Fluid Github RepoFluid Blog https://hexo.fluid-dev.com/ Fluid 官方博客12345 站点 地址 介绍 Fluid Docs https://hexo.fluid-dev.com/docs/ Fluid 官方文档 Hexo-theme-fluid https://github.com/fluid-dev/hexo-theme-fluid Fluid Github Repo Fluid Blog https://hexo.fluid-dev.com/ Fluid 官方博客 脚注 默认渲染器下正常显示,不同渲染器显示效果不同,写法如下: 12脚注演示[^1][^1]:...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment