Basic Syntax
hello world
你好,世界
notice
https://github.com/KKKZOZ/hugo-admonitions
Notification
System notification: Your password will expire in 30 days.
Summary
This is a summary using the IDEA callout!
You can choose to only to show the header!
System notification: Your password will expire in 30 days
Congratulations! Your code has been successfully deployed to production
Warning: This operation will delete all data.
https://github.com/martignoni/hugo-notice
Tip
This is a very good tip.
Warning
This is a warning notice. Be warned!
icons
https://icons.hugomods.com/docs/vendors/
media player
code block
package main
import {
"fmt"
}
func main() {
fmt.Println("hello world")
}
Math
This is $E=mc^2$.
$$ E = mc^2 $$
Mermaid
graph TD;
A[开始] --> B{判断条件};
B -- 是 --> C[执行操作1];
B -- 否 --> D[执行操作2];
C --> E[结束];
D --> E;