Mac的终端配置

参考教程

https://juejin.cn/post/6983697673257746440

包管理工具 - Homebrew

出现的问题

 sft_data pip3 install pandas
error: externally-managed-environment

× This environment is externally managed
╰─> To install Python packages system-wide, try brew install
    xyz, where xyz is the package you are trying to
    install.
    
    If you wish to install a non-brew-packaged Python package,
    create a virtual environment using python3 -m venv path/to/venv.
    Then use path/to/venv/bin/python and path/to/venv/bin/pip.
    
    If you wish to install a non-brew packaged Python application,
    it may be easiest to use pipx install xyz, which will manage a
    virtual environment for you. Make sure you have pipx installed.

note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
hint: See PEP 668 for the detailed specification.

用虚拟环境

python3 -m venv myenvn
source myenv/bin/activaten
pip install pandasn

并且也配置了python的解释器,并进行了重启,为什么还是找不到pandas这个库呢?

解决方案:直接将解释器的路径放过去

which python
/Users/wangfeng/Desktop/sft_data/myenv/bin/python

在这里插入图片描述

错误方法:用find查找到虚拟环境安装的路径,其链接的是brew安装的python路径

在这里插入图片描述

编辑器没有报错,但是运行过程中仍然找不到pandas

但是在终端中运行就可以
ModuleNotFoundError: No module named 'openpyxl'

在这里插入图片描述

得改成专门的运行python文件的按钮

在这里插入图片描述

一定要学会看官方文档

https://code.visualstudio.com/docs/python/python-tutorial

pip安装(安装python就可以)

出现如下问题:

pip命令也找不到,只有pip3

wangfeng@MBP-2FT1NGMD6P-0219 ~ % which python
python not found
wangfeng@MBP-2FT1NGMD6P-0219 ~ % which python3
/usr/local/bin/python3
wangfeng@MBP-2FT1NGMD6P-0219 ~ % python
zsh: command not found: python
wangfeng@MBP-2FT1NGMD6P-0219 ~ % python -V
zsh: command not found: python
wangfeng@MBP-2FT1NGMD6P-0219 ~ % python3 -V
Python 3.12.2
wangfeng@MBP-2FT1NGMD6P-0219 ~ % pip list
zsh: command not found: pip
wangfeng@MBP-2FT1NGMD6P-0219 ~ % pip3 --version
pip 24.0 from /usr/local/lib/python3.12/site-packages/pip (python 3.12)
wangfeng@MBP-2FT1NGMD6P-0219 ~ % pip3 list     
Package Version
------- -------
pip     24.0
wheel   0.42.0

将其进行重命名

wangfeng@MBP-2FT1NGMD6P-0219 ~ % history 10
   10  brew install python
   11  pip uninstall hope -y
   12  pip list
   13  pip list
   14  python -V
   15  brew help
   16  history
   17  brew list | grep python
   18  echo $PATH
   19  brew link [email protected]
   20  which python
   21  which python3
   22  python
   23  python -V
   24  python3 -V
   25  pip list
   26  pip3 --version
   27  pip3 list
   28  nano ~/.zshrc
   29  source ~/.zshrc
   30  pip --version
   31  nano ~/.zshrc
   32  source ~/.zshrc
   33  python -V

在vscode中遇到同样的问题

采用软链接的方式

sudo ln -s /usr/local/bin/python3 /usr/local/bin/python

我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器功能,我们增加了如下几点新功能,帮助你用它写博客:

  1. 全新的界面设计 ,将会带来全新的写作体验;
  2. 在创作中心设置你喜爱的代码高亮样式,Markdown 将代码片显示选择的高亮样式 进行展示;
  3. 增加了 图片拖拽 功能,你可以将本地的图片直接拖拽到编辑区域直接展示;
  4. 全新的 KaTeX数学公式 语法;
  5. 增加了支持甘特图的mermaid语法1 功能;
  6. 增加了 多屏幕编辑 Markdown文章功能;
  7. 增加了 焦点写作模式、预览模式、简洁写作模式、左右区域同步滚轮设置 等功能,功能按钮位于编辑区域与预览区域中间;
  8. 增加了 检查列表 功能。

功能快捷键

撤销:Ctrl/Command + Z
重做:Ctrl/Command + Y
加粗:Ctrl/Command + B
斜体:Ctrl/Command + I
标题:Ctrl/Command + Shift + H
无序列表:Ctrl/Command + Shift + U
有序列表:Ctrl/Command + Shift + O
检查列表:Ctrl/Command + Shift + C
插入代码:Ctrl/Command + Shift + K
插入链接:Ctrl/Command + Shift + L
插入图片:Ctrl/Command + Shift + G
查找:Ctrl/Command + F
替换:Ctrl/Command + G

合理的创建标题,有助于目录的生成

直接输入1次#,并按下space后,将生成1级标题。
输入2次#,并按下space后,将生成2级标题。
以此类推,我们支持6级标题。有助于使用TOC语法后生成一个完美的目录。

如何改变文本的样式

强调文本 强调文本

加粗文本 加粗文本

标记文本

删除文本

引用文本

H2O is是液体。

210 运算结果是 1024.

插入链接与图片

链接: link.

图片: Alt

带尺寸的图片: Alt

居中的图片: Alt

居中并且带尺寸的图片: Alt

当然,我们为了让用户更加便捷,我们增加了图片拖拽功能。

如何插入一段漂亮的代码片

博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片.

// An highlighted block
var foo = 'bar';

生成一个适合你的列表

  • 项目
    • 项目
      • 项目
  1. 项目1
  2. 项目2
  3. 项目3
  • 计划任务
  • 完成任务

创建一个表格

一个简单的表格是这么创建的:

项目 Value
电脑 $1600
手机 $12
导管 $1

设定内容居中、居左、居右

使用:---------:居中
使用:----------居左
使用----------:居右

第一列 第二列 第三列
第一列文本居中 第二列文本居右 第三列文本居左

SmartyPants

SmartyPants将ASCII标点字符转换为“智能”印刷标点HTML实体。例如:

TYPE ASCII HTML
Single backticks 'Isn't this fun?' ‘Isn’t this fun?’
Quotes "Isn't this fun?" “Isn’t this fun?”
Dashes -- is en-dash, --- is em-dash – is en-dash, — is em-dash

创建一个自定义列表

Markdown

Text-to-
HTML conversion tool

Authors

John
Luke

如何创建一个注脚

一个具有注脚的文本。2

注释也是必不可少的

Markdown将文本转换为 HTML

KaTeX数学公式

您可以使用渲染LaTeX数学表达式 KaTeX:

Gamma公式展示

Γ

(

n

)

=

(

n

1

)

!

n

N

Gamma(n) = (n-1)!quadforall ninmathbb N

Γ(n)=(n1)!nN 是通过欧拉积分

Γ

(

z

)

=

0

t

z

1

e

t

d

t

.

Gamma(z) = int_0^infty t^{z-1}e^{-t}dt,.

Γ(z)=0tz1etdt.

你可以找到更多关于的信息 LaTeX 数学表达式here.

新的甘特图功能,丰富你的文章

#mermaid-svg-BAVakP8Ob5eEGDdd {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-BAVakP8Ob5eEGDdd .error-icon{fill:#552222;}#mermaid-svg-BAVakP8Ob5eEGDdd .error-text{fill:#552222;stroke:#552222;}#mermaid-svg-BAVakP8Ob5eEGDdd .edge-thickness-normal{stroke-width:2px;}#mermaid-svg-BAVakP8Ob5eEGDdd .edge-thickness-thick{stroke-width:3.5px;}#mermaid-svg-BAVakP8Ob5eEGDdd .edge-pattern-solid{stroke-dasharray:0;}#mermaid-svg-BAVakP8Ob5eEGDdd .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-svg-BAVakP8Ob5eEGDdd .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-svg-BAVakP8Ob5eEGDdd .marker{fill:#333333;stroke:#333333;}#mermaid-svg-BAVakP8Ob5eEGDdd .marker.cross{stroke:#333333;}#mermaid-svg-BAVakP8Ob5eEGDdd svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-svg-BAVakP8Ob5eEGDdd .mermaid-main-font{font-family:"trebuchet ms",verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-svg-BAVakP8Ob5eEGDdd .exclude-range{fill:#eeeeee;}#mermaid-svg-BAVakP8Ob5eEGDdd .section{stroke:none;opacity:0.2;}#mermaid-svg-BAVakP8Ob5eEGDdd .section0{fill:rgba(102, 102, 255, 0.49);}#mermaid-svg-BAVakP8Ob5eEGDdd .section2{fill:#fff400;}#mermaid-svg-BAVakP8Ob5eEGDdd .section1,#mermaid-svg-BAVakP8Ob5eEGDdd .section3{fill:white;opacity:0.2;}#mermaid-svg-BAVakP8Ob5eEGDdd .sectionTitle0{fill:#333;}#mermaid-svg-BAVakP8Ob5eEGDdd .sectionTitle1{fill:#333;}#mermaid-svg-BAVakP8Ob5eEGDdd .sectionTitle2{fill:#333;}#mermaid-svg-BAVakP8Ob5eEGDdd .sectionTitle3{fill:#333;}#mermaid-svg-BAVakP8Ob5eEGDdd .sectionTitle{text-anchor:start;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-svg-BAVakP8Ob5eEGDdd .grid .tick{stroke:lightgrey;opacity:0.8;shape-rendering:crispEdges;}#mermaid-svg-BAVakP8Ob5eEGDdd .grid .tick text{font-family:"trebuchet ms",verdana,arial,sans-serif;fill:#333;}#mermaid-svg-BAVakP8Ob5eEGDdd .grid path{stroke-width:0;}#mermaid-svg-BAVakP8Ob5eEGDdd .today{fill:none;stroke:red;stroke-width:2px;}#mermaid-svg-BAVakP8Ob5eEGDdd .task{stroke-width:2;}#mermaid-svg-BAVakP8Ob5eEGDdd .taskText{text-anchor:middle;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-svg-BAVakP8Ob5eEGDdd .taskTextOutsideRight{fill:black;text-anchor:start;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-svg-BAVakP8Ob5eEGDdd .taskTextOutsideLeft{fill:black;text-anchor:end;}#mermaid-svg-BAVakP8Ob5eEGDdd .task.clickable{cursor:pointer;}#mermaid-svg-BAVakP8Ob5eEGDdd .taskText.clickable{cursor:pointer;fill:#003163!important;font-weight:bold;}#mermaid-svg-BAVakP8Ob5eEGDdd .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163!important;font-weight:bold;}#mermaid-svg-BAVakP8Ob5eEGDdd .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163!important;font-weight:bold;}#mermaid-svg-BAVakP8Ob5eEGDdd .taskText0,#mermaid-svg-BAVakP8Ob5eEGDdd .taskText1,#mermaid-svg-BAVakP8Ob5eEGDdd .taskText2,#mermaid-svg-BAVakP8Ob5eEGDdd .taskText3{fill:white;}#mermaid-svg-BAVakP8Ob5eEGDdd .task0,#mermaid-svg-BAVakP8Ob5eEGDdd .task1,#mermaid-svg-BAVakP8Ob5eEGDdd .task2,#mermaid-svg-BAVakP8Ob5eEGDdd .task3{fill:#8a90dd;stroke:#534fbc;}#mermaid-svg-BAVakP8Ob5eEGDdd .taskTextOutside0,#mermaid-svg-BAVakP8Ob5eEGDdd .taskTextOutside2{fill:black;}#mermaid-svg-BAVakP8Ob5eEGDdd .taskTextOutside1,#mermaid-svg-BAVakP8Ob5eEGDdd .taskTextOutside3{fill:black;}#mermaid-svg-BAVakP8Ob5eEGDdd .active0,#mermaid-svg-BAVakP8Ob5eEGDdd .active1,#mermaid-svg-BAVakP8Ob5eEGDdd .active2,#mermaid-svg-BAVakP8Ob5eEGDdd .active3{fill:#bfc7ff;stroke:#534fbc;}#mermaid-svg-BAVakP8Ob5eEGDdd .activeText0,#mermaid-svg-BAVakP8Ob5eEGDdd .activeText1,#mermaid-svg-BAVakP8Ob5eEGDdd .activeText2,#mermaid-svg-BAVakP8Ob5eEGDdd .activeText3{fill:black!important;}#mermaid-svg-BAVakP8Ob5eEGDdd .done0,#mermaid-svg-BAVakP8Ob5eEGDdd .done1,#mermaid-svg-BAVakP8Ob5eEGDdd .done2,#mermaid-svg-BAVakP8Ob5eEGDdd .done3{stroke:grey;fill:lightgrey;stroke-width:2;}#mermaid-svg-BAVakP8Ob5eEGDdd .doneText0,#mermaid-svg-BAVakP8Ob5eEGDdd .doneText1,#mermaid-svg-BAVakP8Ob5eEGDdd .doneText2,#mermaid-svg-BAVakP8Ob5eEGDdd .doneText3{fill:black!important;}#mermaid-svg-BAVakP8Ob5eEGDdd .crit0,#mermaid-svg-BAVakP8Ob5eEGDdd .crit1,#mermaid-svg-BAVakP8Ob5eEGDdd .crit2,#mermaid-svg-BAVakP8Ob5eEGDdd .crit3{stroke:#ff8888;fill:red;stroke-width:2;}#mermaid-svg-BAVakP8Ob5eEGDdd .activeCrit0,#mermaid-svg-BAVakP8Ob5eEGDdd .activeCrit1,#mermaid-svg-BAVakP8Ob5eEGDdd .activeCrit2,#mermaid-svg-BAVakP8Ob5eEGDdd .activeCrit3{stroke:#ff8888;fill:#bfc7ff;stroke-width:2;}#mermaid-svg-BAVakP8Ob5eEGDdd .doneCrit0,#mermaid-svg-BAVakP8Ob5eEGDdd .doneCrit1,#mermaid-svg-BAVakP8Ob5eEGDdd .doneCrit2,#mermaid-svg-BAVakP8Ob5eEGDdd .doneCrit3{stroke:#ff8888;fill:lightgrey;stroke-width:2;cursor:pointer;shape-rendering:crispEdges;}#mermaid-svg-BAVakP8Ob5eEGDdd .milestone{transform:rotate(45deg) scale(0.8,0.8);}#mermaid-svg-BAVakP8Ob5eEGDdd .milestoneText{font-style:italic;}#mermaid-svg-BAVakP8Ob5eEGDdd .doneCritText0,#mermaid-svg-BAVakP8Ob5eEGDdd .doneCritText1,#mermaid-svg-BAVakP8Ob5eEGDdd .doneCritText2,#mermaid-svg-BAVakP8Ob5eEGDdd .doneCritText3{fill:black!important;}#mermaid-svg-BAVakP8Ob5eEGDdd .activeCritText0,#mermaid-svg-BAVakP8Ob5eEGDdd .activeCritText1,#mermaid-svg-BAVakP8Ob5eEGDdd .activeCritText2,#mermaid-svg-BAVakP8Ob5eEGDdd .activeCritText3{fill:black!important;}#mermaid-svg-BAVakP8Ob5eEGDdd .titleText{text-anchor:middle;font-size:18px;fill:#333;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-svg-BAVakP8Ob5eEGDdd :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}

2014-01-07

2014-01-09

2014-01-11

2014-01-13

2014-01-15

2014-01-17

2014-01-19

2014-01-21

已完成

进行中

计划一

计划二

现有任务

Adding GANTT diagram functionality to mermaid

  • 关于 甘特图 语法,参考 这儿,

UML 图表

可以使用UML图表进行渲染。 Mermaid. 例如下面产生的一个序列图:

#mermaid-svg-VOgTVkGiAPWws1F0 {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-VOgTVkGiAPWws1F0 .error-icon{fill:#552222;}#mermaid-svg-VOgTVkGiAPWws1F0 .error-text{fill:#552222;stroke:#552222;}#mermaid-svg-VOgTVkGiAPWws1F0 .edge-thickness-normal{stroke-width:2px;}#mermaid-svg-VOgTVkGiAPWws1F0 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-svg-VOgTVkGiAPWws1F0 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-svg-VOgTVkGiAPWws1F0 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-svg-VOgTVkGiAPWws1F0 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-svg-VOgTVkGiAPWws1F0 .marker{fill:#333333;stroke:#333333;}#mermaid-svg-VOgTVkGiAPWws1F0 .marker.cross{stroke:#333333;}#mermaid-svg-VOgTVkGiAPWws1F0 svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-svg-VOgTVkGiAPWws1F0 .actor{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;}#mermaid-svg-VOgTVkGiAPWws1F0 text.actor>tspan{fill:black;stroke:none;}#mermaid-svg-VOgTVkGiAPWws1F0 .actor-line{stroke:grey;}#mermaid-svg-VOgTVkGiAPWws1F0 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#mermaid-svg-VOgTVkGiAPWws1F0 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#mermaid-svg-VOgTVkGiAPWws1F0 #arrowhead path{fill:#333;stroke:#333;}#mermaid-svg-VOgTVkGiAPWws1F0 .sequenceNumber{fill:white;}#mermaid-svg-VOgTVkGiAPWws1F0 #sequencenumber{fill:#333;}#mermaid-svg-VOgTVkGiAPWws1F0 #crosshead path{fill:#333;stroke:#333;}#mermaid-svg-VOgTVkGiAPWws1F0 .messageText{fill:#333;stroke:#333;}#mermaid-svg-VOgTVkGiAPWws1F0 .labelBox{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;}#mermaid-svg-VOgTVkGiAPWws1F0 .labelText,#mermaid-svg-VOgTVkGiAPWws1F0 .labelText>tspan{fill:black;stroke:none;}#mermaid-svg-VOgTVkGiAPWws1F0 .loopText,#mermaid-svg-VOgTVkGiAPWws1F0 .loopText>tspan{fill:black;stroke:none;}#mermaid-svg-VOgTVkGiAPWws1F0 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);}#mermaid-svg-VOgTVkGiAPWws1F0 .note{stroke:#aaaa33;fill:#fff5ad;}#mermaid-svg-VOgTVkGiAPWws1F0 .noteText,#mermaid-svg-VOgTVkGiAPWws1F0 .noteText>tspan{fill:black;stroke:none;}#mermaid-svg-VOgTVkGiAPWws1F0 .activation0{fill:#f4f4f4;stroke:#666;}#mermaid-svg-VOgTVkGiAPWws1F0 .activation1{fill:#f4f4f4;stroke:#666;}#mermaid-svg-VOgTVkGiAPWws1F0 .activation2{fill:#f4f4f4;stroke:#666;}#mermaid-svg-VOgTVkGiAPWws1F0 .actorPopupMenu{position:absolute;}#mermaid-svg-VOgTVkGiAPWws1F0 .actorPopupMenuPanel{position:absolute;fill:#ECECFF;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#mermaid-svg-VOgTVkGiAPWws1F0 .actor-man line{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;}#mermaid-svg-VOgTVkGiAPWws1F0 .actor-man circle,#mermaid-svg-VOgTVkGiAPWws1F0 line{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;stroke-width:2px;}#mermaid-svg-VOgTVkGiAPWws1F0 :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}

张三

李四

王五

你好!李四, 最近怎么样?

你最近怎么样,王五?

我很好,谢谢!

我很好,谢谢!

李四想了很长时间, 文字太长了

不适合放在一行.

打量着王五...

很好... 王五, 你怎么样?

张三

李四

王五

这将产生一个流程图。:

#mermaid-svg-jOVi96qzKCpleku4 {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-jOVi96qzKCpleku4 .error-icon{fill:#552222;}#mermaid-svg-jOVi96qzKCpleku4 .error-text{fill:#552222;stroke:#552222;}#mermaid-svg-jOVi96qzKCpleku4 .edge-thickness-normal{stroke-width:2px;}#mermaid-svg-jOVi96qzKCpleku4 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-svg-jOVi96qzKCpleku4 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-svg-jOVi96qzKCpleku4 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-svg-jOVi96qzKCpleku4 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-svg-jOVi96qzKCpleku4 .marker{fill:#333333;stroke:#333333;}#mermaid-svg-jOVi96qzKCpleku4 .marker.cross{stroke:#333333;}#mermaid-svg-jOVi96qzKCpleku4 svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-svg-jOVi96qzKCpleku4 .label{font-family:"trebuchet ms",verdana,arial,sans-serif;color:#333;}#mermaid-svg-jOVi96qzKCpleku4 .cluster-label text{fill:#333;}#mermaid-svg-jOVi96qzKCpleku4 .cluster-label span{color:#333;}#mermaid-svg-jOVi96qzKCpleku4 .label text,#mermaid-svg-jOVi96qzKCpleku4 span{fill:#333;color:#333;}#mermaid-svg-jOVi96qzKCpleku4 .node rect,#mermaid-svg-jOVi96qzKCpleku4 .node circle,#mermaid-svg-jOVi96qzKCpleku4 .node ellipse,#mermaid-svg-jOVi96qzKCpleku4 .node polygon,#mermaid-svg-jOVi96qzKCpleku4 .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#mermaid-svg-jOVi96qzKCpleku4 .node .label{text-align:center;}#mermaid-svg-jOVi96qzKCpleku4 .node.clickable{cursor:pointer;}#mermaid-svg-jOVi96qzKCpleku4 .arrowheadPath{fill:#333333;}#mermaid-svg-jOVi96qzKCpleku4 .edgePath .path{stroke:#333333;stroke-width:2.0px;}#mermaid-svg-jOVi96qzKCpleku4 .flowchart-link{stroke:#333333;fill:none;}#mermaid-svg-jOVi96qzKCpleku4 .edgeLabel{background-color:#e8e8e8;text-align:center;}#mermaid-svg-jOVi96qzKCpleku4 .edgeLabel rect{opacity:0.5;background-color:#e8e8e8;fill:#e8e8e8;}#mermaid-svg-jOVi96qzKCpleku4 .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#mermaid-svg-jOVi96qzKCpleku4 .cluster text{fill:#333;}#mermaid-svg-jOVi96qzKCpleku4 .cluster span{color:#333;}#mermaid-svg-jOVi96qzKCpleku4 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#mermaid-svg-jOVi96qzKCpleku4 :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}

链接
长方形
圆角长方形
菱形
  • 关于 Mermaid 语法,参考 这儿,

FLowchart流程图

我们依旧会支持flowchart的流程图:

Created with Raphaël 2.3.0

开始

我的操作

确认?

结束

yes

no

  • 关于 Flowchart流程图 语法,参考 这儿.

导出与导入

导出

如果你想尝试使用此编辑器, 你可以在此篇文章任意编辑。当你完成了一篇文章的写作, 在上方工具栏找到 文章导出 ,生成一个.md文件或者.html文件进行本地保存。

导入

如果你想加载一篇你写过的.md文件,在上方工具栏可以选择导入功能进行对应扩展名的文件导入,
继续你的创作。


  1. mermaid语法说明 ↩︎

  2. 注脚的解释 ↩︎

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
THE END
分享
二维码
< <上一篇
下一篇>>