书呆子
1
一级标题
二级标题
三级标题
四级标题
五级标题
六级标题
斜体1
粗体1
加粗斜体1
~~删除线~~
网站
一级引用
二级引用
三级引用
void main()
{
printf("Hello, Markdown.");
}
\textcolor{blue}blue
\
\textcolor{#00ff00}green
\
\textcolor{#ff0000}red
\
\color{blue} test
\
test
$$
A_1^2
\
B_{12}
\
2^{x^2+y}
$$
@书呆子 三重反引号后加“py”就渲染python代码了,同理,加cpp就是c++了.
如:(我不会c++,下面是随便写的
#include<m>
//注释文本
def add(a,b):
return a + b
print(add(5,4))
#同样是随便写的
html转义符:
内容(请去空格) 效果
& nbsp; “ ”
& lt; “<”
& gt; “>”
& minus; “−”
& amp; “&”
& times; “×”
还有更多可以网上查
总结
这很简单啊,学了点皮毛就会hello world
c++
#include<iostream>
int main(){
std::cout << "hello world";
return 0;
}
c
#include<stdio.h>
int main(){
printf( "hello world");
return 0;
}