github以及markdown使用总结(持续更新中)

时间:2021-10-23 14:52:00

     @DavidHan ,
     http://blog.csdn.net/David_Han008/article/details/78343836

    
问题1:如何在github上面的readme当中添加图片
参考链接
http://blog.csdn.net/zhang58246500/article/details/51878747

![image](https://github.com/DavidHan008/ar_tags_follower/Screenshot from 2017-08-09 16:10:07.png)

本质上就是![image](图片的地址)

如何如何在github上面题啊用,
https://segmentfault.com/q/1010000008031288?_ea=1528325
也就是直接在github上面创建文件夹。然后将需要添加的东西直接拖到想要建立的文件夹里面,然后添加一个简要的markdown文件。产生markdown,可以直接用csdn的博客来产生md文件。最后字啊原有的github上面提交申请改变就可以了。

问题2:向github上面提交代码
首先fork到你的 github上面 就是向git clone 你的代码,你的文件夹 然后写完代码之后之后git add . 以及git commit "修改了哪些内容" 最后提交代码git push, 将来如果要进行合并分支的话,就是pull request就可以了。

问题3:markdown的使用总结
关于代码的片

   测试

参考博客:
[1]http://blog.csdn.net/xmh19936688/article/details/50066091
[2]http://www.cnblogs.com/Bone-ACE/p/4558870.html

问题4:markdown改变字体颜色,图片居中,加入高亮代码片
4.1 改变字体颜色:
http://www.cnblogs.com/blfshiye/p/5168840.html
4.2 图片居中:
http://blog.csdn.net/jingbin_/article/details/52960826
4.3 在markdown当中无法插入高亮皮肤代码片解决办法
想要的效果
github以及markdown使用总结(持续更新中)
但是用ctrl+K的效果

#include <iostream>
#include <string>
using namespace std;
int main()
{

string str("abcdefgh");
string str1(str);
string str2(str,2,4);
string str3(str, 4);
cout <<"str1:"<< str1 << endl;
cout << "str2:" << str2 << endl;
getchar();
return 0;
}

解决办法:
先切换到html的编辑器当中,然后插入代码片,最后看源码,然后把源码粘贴到markdown当中,就可以了。因为markdown是完全支持html的。
github以及markdown使用总结(持续更新中)
问题5:ubuntu14.04安装gitbook edit
参考链接:点击这里
全部按照参考链接里的步骤跑通之后,接下来安装去官网下载gitbook edit 然后打开,将需要repo的东西git clone 下来就可以了,
问题6markdown当中数学公式
上标^;下标_;空格\quad打出双下标(进行分类){ }
更多公式参考链接:点击这里