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 Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

计划

  • 实现长图片、效果图等侧边排列合适内容与文字竖向排列。实现方式:代码块标记或{% ? %}标记,修改渲染模板。可能涉及css。
  • 当评论泛滥时,启用反垃圾 ,AKISMET_KEY https://akismet.com/developers/

遗留问题

历史

  • 之前的就不管了

  • 2024年1月10日

    • 将域名变更为 19980118.xyz
    • 将模板里的pengxiandyou.cf等自定义用到的域名变更为主题模板定义{{ them.blogurl }}
    • 修改主题文件下的_vendors.yml的mermaid版本为10.6.1,同时修改主题配置文件
    • leancloud成功绑定域名 comms.19980118.xyz vercel成功绑定 comm.19980118.xyz 量子绑定:代理
    • 将vercel的环境变量ADMIN_URL,由https://pengxiandyou.avosapps.us改为https://comms.19980118.xyz/
  • 2024年1月11日

    • 通过ns记录将二级域名comm.19980118.xyz交给vercel进行解析实现
    • 添加自定义标签实现两列显示 方法
    • 发现之前图片加载失败不停重试
      • 添加重试次数
      • 添加错误图片
      • 点击图片再次重试
  • 2024年1月15日

    • 添加答题显示功能,当然聪明人不需要
  • 2024年1月22日

    • 我看上了MC百科的文字黑块显示效果,所以拿来主义。

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      .uknowtoomuch {
      background-color: #000 !important;
      color: #000 !important;
      border-radius: 5px !important
      }

      .uknowtoomuch a {
      color: #000 !important
      }

      .uknowtoomuch:hover,.uknowtoomuch:hover a,.uknowtoomuch.active {
      color: #FFF !important;
      }

      暂时自己用span标签添加uknowtoomuch类来使用,后期可以改成hexo标签。