0%

Markdown 语法

标题

1

1.1

1.1.1

1.1.1

1.1.1 a
1
2
3
var a="1";
a+=2;
print a;

这一段,

引言


叫区块引用

斜体
加粗
删除线
下划线

  • 第一教条
  • 第二条
  1. 首先
  2. 然后
  3. 最后
  • Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
    viverra nec, fringilla in, laoreet vitae, risus.
  • Donec sit amet nisl. Aliquam semper ipsum sit amet velit.
    Suspendisse id sem consectetuer libero luctus adipiscing.

这个是百度链接 可以使用相对路径

QQstone笔记

根据某某某考证,见[该刊]1

站内超链接:关于websockt 详见 WebSocket篇

1
{% post_link 文章文件名 显示文字 %}

反引号``取消自动超链接: https://www.baidu.com 但是有个高亮背景,或者用\

cannot load pic here

左对齐 居中 右对齐
内容 内容 内容
内容 内容 内容

console.log('code here')

1
console.log('code here')

矩阵

更多数学表示—> CSDN: nuoyanli
公式的语法是mathjax的规范 hexo-js-next渲染公式需用hexo-renderer-kramed(默认是hexo-renderer-marked)
配置theme\next_config.yml mathjax: enable: true
同时在文章title下使能 mathjax: true
详见hexo-theme-next doc:数学公式

PlantUML绘图

安装VS Code插件: Markdown Preview Enhanced, PlantUML

```plantuml
@startuml

== Initialization ==

Alice -> Bob: : Can you solve: ax^2+bx+c=0
Bob —> Alice: x = (-b+-sqrt(b^2-4ac))/(2a)
activate Alice #FFBBBB
note left: this is a first note

Alice -> Bob: Another dialogue
deactivate Alice

Alice <— Bob: Another dialogue

@enduml
```@enduml