markdown学习
markdown学习1.标题运用:#+空格 +内容 #的数量决定你是几级标题,如##是二级标题,###是三级标题 或者使用快捷键 CTRL+数字: CTRL+ 1为一级标题, CTRL +2为二级标题 2.字体样式① 粗体:** + ** , 即在内容两边分别加上两个**。 快捷键 CTRL+ B 如:hello world ② 斜体 :* + *, 即在内容两边分别加上一个 *。 快捷键 CTRL+ I 如:hello world ③ 粗体+斜体:*** + ***, 即在内容两边分别加上三个*。 如:hello world ④ 删除线:~~ + ~~,即在内容两边分别加上两条 ~~。 快捷键:Alt + Shift +5 如:hello world 3.引用>+ 内容 hello world 4.分割线用---或者***即可表示分割线 5.图片用![]()表示,[]里输入图片名字,()里输入图片链接或者本地上传路径 如 6.超链接用 []()表...
从0搭建Hexo和Cloudflare Pages个人博客
从零搭建Hexo+Cloudflare Pages的个人博客一、准备工作:安装基础环境1. 安装Node.js 和 Git 及 VS Code 并且检查是否安装成功 因为Hexo基于Node.js,部署需要Git Node.js: (https://nodejs.cn/en/download) Git : (https://git-scm.com/install/windows) 其他工具:VS Code :(https://code.visualstudio.com/) (后续配置使用方便) 检查:按键盘上的win+r后输入cmd,回车. 输入node -v 和 npm -v 和 git -v,如安装成功则会显示版本 2.安装Hexo a.打开Hexo 文档: (https://hexo.io/zh-cn/docs/) b.按照它的教程安装Hexo 注:如果输入 npm install -g hexo-cli 无反应后可以选择换源,并将npm改为cnpm 二、VS Code操作 1.新建一个文件夹用于保存网站代码并用 VS Code 打开,新建终端并...
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