打造GitHub个性化主页

2021-07-05 20:46:02 浏览数 (1)

  • 1.1 打造github个性化主页的效果
  • 1.2 例子
  • 4.1 markdown指南
  • 4.2 html2md: 将其他平台的非付费文章从html转为markdown
  • 4.3 markdown 转换器 mdnice

前言

I 打造github个性化主页的特殊仓库

You found a secret! zhangkn/zhangkn is a ✨special ✨ repository that you can use to add a README.md to your GitHub profile. Make sure it’s public and initialize it with a README to get started.

Github这个隐藏的功能非常棒!有了它,我们就能打造个性化或者说是炫酷的个人主页了。

在这里插入图片描述

1.1 打造github个性化主页的效果

在这里插入图片描述

1.2 例子

https://github.com/zhangkn/zhangkn

代码语言:javascript复制

<!--
**zhangkn/zhangkn** is a ✨ _special_ ✨ repository because its `README.md` (this file) appears on your GitHub profile.

Here are some ideas to get you started:

- ? I’m currently working on ...
- ? I’m currently learning ...
- ? I’m looking to collaborate on ...
- ? I’m looking for help with ...
- ? Ask me about ...
- ? How to reach me: ...
- ? Pronouns: ...
- ⚡ Fun fact: ...
-->


### ?你好,欢迎 ?


<img align="right" src="https://github-readme-stats.vercel.app/api?username=zhangkn&show_icons=true&icon_color=CE1D2D&text_color=718096&bg_color=ffffff&hide_title=true" />

- ? I’m currently working on [blog](https://kunnan.blog.csdn.net)
- ? I’m currently learning [LLVM](https://llvm.org)
- ? I’m currently learning [Swift](https://swift.org)
- ? I’m currently learning [frida.re](https://frida.re)
- ? How to reach me: [About](https://kunnan.blog.csdn.net)

II GitHub Pages

应用场景:使用GitHub_Pages和jekyll搭建个人博客

例子:https://kunnan.github.io/

https://github.com/kunnan/kunnan.github.io

  • 优点

自带域名可 https 访问 可配置自定义域名

  • 缺点

无法给自定义域名配置 SSL,借助其他平台(cloudflare CDN)。不如自己买个 vps 搭建。

III、GitHub 1s,使用在线 VS Code 打开 GitHub 上的代码

https://github1s.com/zhangkn/zhangkn.github.io/blob/master/404.html

在这里插入图片描述

IV see also:技术博客写作工具

4.1 markdown指南

  • 【技术博客写作工具markdown指南(文章目录生成、Markdown表格合并单元格、文章快速插入链接)】

https://kunnan.blog.csdn.net/article/details/112350644

4.2 html2md: 将其他平台的非付费文章从html转为markdown

https://www.helloworld.net/html2md

在这里插入图片描述

4.3 markdown 转换器 mdnice

https://www.mdnice.com/

  • 修改hosts,解决GitHub 访问的问题,
代码语言:javascript复制
open -e /private/etc/hosts
140.82.113.4 https://github.com #关键的地方是IP

0 人点赞