Initial blog skeleton

This commit is contained in:
2026-03-18 17:38:01 +08:00
commit 994235734a
66 changed files with 16812 additions and 0 deletions

76
mkdocs.yml Normal file
View File

@@ -0,0 +1,76 @@
site_name: Flower Research Notes
site_description: 科研论文总结、知识点卡片与专题梳理
site_url: https://example.com
repo_name: Flower Research Notes
repo_url: https://github.com/
theme:
name: material
language: zh
logo: null
favicon: null
palette:
- scheme: default
primary: white
accent: blue grey
toggle:
icon: material/weather-night
name: 切换到深色模式
- scheme: slate
primary: black
accent: blue grey
toggle:
icon: material/weather-sunny
name: 切换到浅色模式
features:
- navigation.tabs
- navigation.top
- navigation.sections
- navigation.expand
- search.suggest
- search.highlight
- content.code.copy
- content.action.edit
plugins:
- search
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.details
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
extra_javascript:
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- stylesheets/extra.css
nav:
- 首页: index.md
- 论文总结:
- papers/index.md
- 示例Attention Is All You Need: papers/attention-is-all-you-need.md
- 知识点卡片:
- notes/index.md
- 示例Transformer 注意力机制: notes/transformer-attention.md
- 专题:
- topics/index.md
- 大语言模型: topics/llm.md
- 关于: about.md