2024/12/31/Setting-up-My-Blog/ #16
Replies: 1 comment
|
@ttyaaron on Dec 31, 2024: 让我来测试一下这个评论区1. 排版粗体 斜体
引用:
有充列表:
无序列表:
2. 图片与链接3. 标题以下是各级标题, 最多支持5级标题 4. 代码示例: 代码高亮示例: /**
* nth element in the fibonacci series.
* @param n >= 0
* @return the nth element, >= 0.
*/
function fib(n) {
var a = 1, b = 1;
var tmp;
while (--n >= 0) {
tmp = a;
a += b;
b = tmp;
}
return a;
}
document.write(fib(10));class Employee:
empCount = 0
def __init__(self, name, salary):
self.name = name
self.salary = salary
Employee.empCount += 15. Markdown 扩展Markdown 扩展支持:
5.1 表格
可以指定对齐方式, 如Item列左对齐, Value列右对齐, Qty列居中对齐
5.2 定义型列表名词 1 代码块 2 5.3 Html 标签支持在 Markdown 语法中嵌套 Html 标签,譬如,你可以用 Html 写一个纵跨两行的表格:
提示, 如果想对图片的宽度和高度进行控制, 你也可以通过img标签, 如: 5.4 脚注Leanote1来创建一个脚注 5.5 目录通过 [TOC] 5.6 时序图与流程图流程图:
5.7 MathJax 公式$ 表示行内公式: 质能守恒方程可以用一个很简洁的方程式 $$ 表示整行公式: 更复杂的公式: 访问 MathJax 参考更多使用方法。 Footnotes
|
Uh oh!
There was an error while loading. Please reload this page.
2024/12/31/Setting-up-My-Blog/
欢迎来到晓天的个人博客! - Authid Bai - 晓天的浮空岛
https://autumnhid.com/2024/12/31/Setting-up-My-Blog/
All reactions