关于MDNotes: 在浏览器中浏览和管理 Markdown 文件
支持的操作系统: windows 64 位系统
功能列表
- 绿色免安装
- 支持浏览器内直接打开文件或文件夹进行编辑
- 支持Markdown文件全文检索
- 支持emoji表情: emoji-cheat-sheet
- 支持Mermaid
- 支持Mathjax
- 支持嵌套的任务列表
- 支持Prism语法高亮
- 支持图片缩放
- 支持Markdown文件内容更新(包括该文件同目录的图片更新)后,实时重新渲染浏览器内网页
软件下载
百度网盘: https://pan.baidu.com/s/1W-4J1PzQwdnaMVxS6LCqrA,提取码: uz3k
示例
1.Mermaid
Markdown codes,note that you need to use double quotes when using emoji expressions:
graph TD
A[Christmas] -->|Get money| B(Go shopping)
B --> C{Let me think}
C -->|One| D[Laptop]
C -->|Two| E[iPhone]
C -->|Three| F["🚔Car"]
显示内容:

Markdown代码:
erDiagram
CUSTOMER }|..|{ DELIVERY-ADDRESS : has
CUSTOMER ||--o{ ORDER : places
CUSTOMER ||--o{ INVOICE : "liable for"
DELIVERY-ADDRESS ||--o{ ORDER : receives
INVOICE ||--|{ ORDER : covers
ORDER ||--|{ ORDER-ITEM : includes
PRODUCT-CATEGORY ||--|{ PRODUCT : contains
PRODUCT ||--o{ ORDER-ITEM : "ordered in"
显示内容:

Markdown代码:
sequenceDiagram
Alice->>+John: Hello John, how are you?
Alice->>+John: John, can you hear me?
John-->>-Alice: Hi Alice, I can hear you!
John-->>-Alice: I feel great!
显示内容:

更多示例: https://mermaid-js.github.io/mermaid-live-editor/
2.Mathjax
代码:
When \\(a \ne1 0\\), there are two solutions to \\(ax^2 + bx + c = 0\\) and they are:
$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a} $$
显示:

3.嵌套的任务列表
代码:
- [x] task1
- [ ] task2
- [x] task2.1
- [ ] task2.2
- [ ] task2.3
- [x] task2.3.1
- [ ] task2.3.2
显示:

4.Prism语法高亮
代码:
import math
# Assign values to x and n
x = 4
n = 3
# Method 1
power = x ** n
print("%d to the power %d is %d" % (x,n,power))
# Method 2
power = pow(x,n)
print("%d to the power %d is %d" % (x,n,power))
# Method 3
power = math.pow(2,6.5)
print("%d to the power %d is %5.2f" % (x,n,power))
显示:

价值投资不能保证我们盈利, 但价值投资给我们提供了通向成功的唯一机会。——巴菲特