这里写自定义目录标题

  • 欢迎使用Markdown编辑器
    • 新的改变
    • 功能快捷键
    • 合理的创建标题,有助于目录的生成
    • 如何改变文本的样式
    • 插入链接与图片
    • 如何插入一段漂亮的代码片
    • 生成一个适合你的列表
    • 创建一个表格
      • 设定内容居中、居左、居右
      • SmartyPants
    • 创建一个自定义列表
    • 如何创建一个注脚
    • 注释也是必不可少的
    • KaTeX数学公式
    • 新的甘特图功能,丰富你的文章
    • UML 图表
    • FLowchart流程图
    • 导出与导入
      • 导出
      • 导入
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"x:Class="AppForm.Views.AboutPage"xmlns:vm="clr-namespace:AppForm.ViewModels"Title="{Binding Title}"><ContentPage.BindingContext><vm:AboutViewModel /></ContentPage.BindingContext><ContentPage.Resources><ResourceDictionary><Color x:Key="Accent">#96d1ff</Color></ResourceDictionary></ContentPage.Resources><Grid><Grid.RowDefinitions><RowDefinition Height="Auto" /><RowDefinition Height="*" /></Grid.RowDefinitions><StackLayout BackgroundColor="{StaticResource Accent}" VerticalOptions="FillAndExpand" HorizontalOptions="Fill"><StackLayout Orientation="Horizontal" HorizontalOptions="Center" VerticalOptions="Center"><ContentView Padding="0,40,0,40" VerticalOptions="FillAndExpand"><Image Source="xamarin_logo.png" VerticalOptions="Center" HeightRequest="32" /></ContentView></StackLayout></StackLayout><ScrollView Grid.Row="1"><StackLayout Orientation="Vertical" Padding="30,24,30,24" Spacing="10"><Label Text="Start developing now" FontSize="Title"/><Label Text="Make changes to your XAML file and save to see your UI update in the running app with XAML Hot Reload. Give it a try!" FontSize="16" Padding="0,0,0,0"/><Label FontSize="16" Padding="0,24,0,0"><Label.FormattedText><FormattedString><FormattedString.Spans><Span Text="Learn more at "/><Span Text="https://aka.ms/xamarin-quickstart" FontAttributes="Bold"/></FormattedString.Spans></FormattedString></Label.FormattedText></Label><Button Margin="0,10,0,0" Text="Learn more"Command="{Binding OpenWebCommand}"BackgroundColor="{StaticResource Success}"TextColor="White" /></StackLayout></ScrollView></Grid></ContentPage>
namespace AppForm.ViewModels
{public class AboutViewModel : BaseViewModel{public ICommand OpenWebCommand { get; }public AboutViewModel(){Title = "About";OpenWebCommand = new Command(async () => await Browser.OpenAsync("https://aka.ms/xamarin-quickstart"));}}
}

欢迎使用Markdown编辑器

你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Markdown编辑器, 可以仔细阅读这篇文章,了解一下Markdown的基本语法知识。

新的改变

我们对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.

图片:

带尺寸的图片:

居中的图片:

居中并且带尺寸的图片:

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

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

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

// 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)!\quad\forall n\in\mathbb NΓ(n)=(n−1)!∀n∈N 是通过欧拉积分

Γ(z)=∫0∞tz−1e−tdt.\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. Γ(z)=∫0∞​tz−1e−tdt.

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

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

Mon 06Mon 13Mon 20已完成 进行中 计划一 计划二 现有任务Adding GANTT diagram functionality to mermaid
  • 关于 甘特图 语法,参考 这儿,

UML 图表

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

#mermaid-svg-IFRao9B16tlIbDDp .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:#333}#mermaid-svg-IFRao9B16tlIbDDp .label text{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp .node rect,#mermaid-svg-IFRao9B16tlIbDDp .node circle,#mermaid-svg-IFRao9B16tlIbDDp .node ellipse,#mermaid-svg-IFRao9B16tlIbDDp .node polygon,#mermaid-svg-IFRao9B16tlIbDDp .node path{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-IFRao9B16tlIbDDp .node .label{text-align:center;fill:#333}#mermaid-svg-IFRao9B16tlIbDDp .node.clickable{cursor:pointer}#mermaid-svg-IFRao9B16tlIbDDp .arrowheadPath{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp .edgePath .path{stroke:#333;stroke-width:1.5px}#mermaid-svg-IFRao9B16tlIbDDp .flowchart-link{stroke:#333;fill:none}#mermaid-svg-IFRao9B16tlIbDDp .edgeLabel{background-color:#e8e8e8;text-align:center}#mermaid-svg-IFRao9B16tlIbDDp .edgeLabel rect{opacity:0.9}#mermaid-svg-IFRao9B16tlIbDDp .edgeLabel span{color:#333}#mermaid-svg-IFRao9B16tlIbDDp .cluster rect{fill:#ffffde;stroke:#aa3;stroke-width:1px}#mermaid-svg-IFRao9B16tlIbDDp .cluster text{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:12px;background:#ffffde;border:1px solid #aa3;border-radius:2px;pointer-events:none;z-index:100}#mermaid-svg-IFRao9B16tlIbDDp .actor{stroke:#ccf;fill:#ECECFF}#mermaid-svg-IFRao9B16tlIbDDp text.actor>tspan{fill:#000;stroke:none}#mermaid-svg-IFRao9B16tlIbDDp .actor-line{stroke:grey}#mermaid-svg-IFRao9B16tlIbDDp .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333}#mermaid-svg-IFRao9B16tlIbDDp .messageLine1{stroke-width:1.5;stroke-dasharray:2, 2;stroke:#333}#mermaid-svg-IFRao9B16tlIbDDp #arrowhead path{fill:#333;stroke:#333}#mermaid-svg-IFRao9B16tlIbDDp .sequenceNumber{fill:#fff}#mermaid-svg-IFRao9B16tlIbDDp #sequencenumber{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp #crosshead path{fill:#333;stroke:#333}#mermaid-svg-IFRao9B16tlIbDDp .messageText{fill:#333;stroke:#333}#mermaid-svg-IFRao9B16tlIbDDp .labelBox{stroke:#ccf;fill:#ECECFF}#mermaid-svg-IFRao9B16tlIbDDp .labelText,#mermaid-svg-IFRao9B16tlIbDDp .labelText>tspan{fill:#000;stroke:none}#mermaid-svg-IFRao9B16tlIbDDp .loopText,#mermaid-svg-IFRao9B16tlIbDDp .loopText>tspan{fill:#000;stroke:none}#mermaid-svg-IFRao9B16tlIbDDp .loopLine{stroke-width:2px;stroke-dasharray:2, 2;stroke:#ccf;fill:#ccf}#mermaid-svg-IFRao9B16tlIbDDp .note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-IFRao9B16tlIbDDp .noteText,#mermaid-svg-IFRao9B16tlIbDDp .noteText>tspan{fill:#000;stroke:none}#mermaid-svg-IFRao9B16tlIbDDp .activation0{fill:#f4f4f4;stroke:#666}#mermaid-svg-IFRao9B16tlIbDDp .activation1{fill:#f4f4f4;stroke:#666}#mermaid-svg-IFRao9B16tlIbDDp .activation2{fill:#f4f4f4;stroke:#666}#mermaid-svg-IFRao9B16tlIbDDp .mermaid-main-font{font-family:"trebuchet ms", verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp .section{stroke:none;opacity:0.2}#mermaid-svg-IFRao9B16tlIbDDp .section0{fill:rgba(102,102,255,0.49)}#mermaid-svg-IFRao9B16tlIbDDp .section2{fill:#fff400}#mermaid-svg-IFRao9B16tlIbDDp .section1,#mermaid-svg-IFRao9B16tlIbDDp .section3{fill:#fff;opacity:0.2}#mermaid-svg-IFRao9B16tlIbDDp .sectionTitle0{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp .sectionTitle1{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp .sectionTitle2{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp .sectionTitle3{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp .grid .tick{stroke:#d3d3d3;opacity:0.8;shape-rendering:crispEdges}#mermaid-svg-IFRao9B16tlIbDDp .grid .tick text{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp .grid path{stroke-width:0}#mermaid-svg-IFRao9B16tlIbDDp .today{fill:none;stroke:red;stroke-width:2px}#mermaid-svg-IFRao9B16tlIbDDp .task{stroke-width:2}#mermaid-svg-IFRao9B16tlIbDDp .taskText{text-anchor:middle;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp .taskText:not([font-size]){font-size:11px}#mermaid-svg-IFRao9B16tlIbDDp .taskTextOutsideRight{fill:#000;text-anchor:start;font-size:11px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp .taskTextOutsideLeft{fill:#000;text-anchor:end;font-size:11px}#mermaid-svg-IFRao9B16tlIbDDp .task.clickable{cursor:pointer}#mermaid-svg-IFRao9B16tlIbDDp .taskText.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-IFRao9B16tlIbDDp .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-IFRao9B16tlIbDDp .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-IFRao9B16tlIbDDp .taskText0,#mermaid-svg-IFRao9B16tlIbDDp .taskText1,#mermaid-svg-IFRao9B16tlIbDDp .taskText2,#mermaid-svg-IFRao9B16tlIbDDp .taskText3{fill:#fff}#mermaid-svg-IFRao9B16tlIbDDp .task0,#mermaid-svg-IFRao9B16tlIbDDp .task1,#mermaid-svg-IFRao9B16tlIbDDp .task2,#mermaid-svg-IFRao9B16tlIbDDp .task3{fill:#8a90dd;stroke:#534fbc}#mermaid-svg-IFRao9B16tlIbDDp .taskTextOutside0,#mermaid-svg-IFRao9B16tlIbDDp .taskTextOutside2{fill:#000}#mermaid-svg-IFRao9B16tlIbDDp .taskTextOutside1,#mermaid-svg-IFRao9B16tlIbDDp .taskTextOutside3{fill:#000}#mermaid-svg-IFRao9B16tlIbDDp .active0,#mermaid-svg-IFRao9B16tlIbDDp .active1,#mermaid-svg-IFRao9B16tlIbDDp .active2,#mermaid-svg-IFRao9B16tlIbDDp .active3{fill:#bfc7ff;stroke:#534fbc}#mermaid-svg-IFRao9B16tlIbDDp .activeText0,#mermaid-svg-IFRao9B16tlIbDDp .activeText1,#mermaid-svg-IFRao9B16tlIbDDp .activeText2,#mermaid-svg-IFRao9B16tlIbDDp .activeText3{fill:#000 !important}#mermaid-svg-IFRao9B16tlIbDDp .done0,#mermaid-svg-IFRao9B16tlIbDDp .done1,#mermaid-svg-IFRao9B16tlIbDDp .done2,#mermaid-svg-IFRao9B16tlIbDDp .done3{stroke:grey;fill:#d3d3d3;stroke-width:2}#mermaid-svg-IFRao9B16tlIbDDp .doneText0,#mermaid-svg-IFRao9B16tlIbDDp .doneText1,#mermaid-svg-IFRao9B16tlIbDDp .doneText2,#mermaid-svg-IFRao9B16tlIbDDp .doneText3{fill:#000 !important}#mermaid-svg-IFRao9B16tlIbDDp .crit0,#mermaid-svg-IFRao9B16tlIbDDp .crit1,#mermaid-svg-IFRao9B16tlIbDDp .crit2,#mermaid-svg-IFRao9B16tlIbDDp .crit3{stroke:#f88;fill:red;stroke-width:2}#mermaid-svg-IFRao9B16tlIbDDp .activeCrit0,#mermaid-svg-IFRao9B16tlIbDDp .activeCrit1,#mermaid-svg-IFRao9B16tlIbDDp .activeCrit2,#mermaid-svg-IFRao9B16tlIbDDp .activeCrit3{stroke:#f88;fill:#bfc7ff;stroke-width:2}#mermaid-svg-IFRao9B16tlIbDDp .doneCrit0,#mermaid-svg-IFRao9B16tlIbDDp .doneCrit1,#mermaid-svg-IFRao9B16tlIbDDp .doneCrit2,#mermaid-svg-IFRao9B16tlIbDDp .doneCrit3{stroke:#f88;fill:#d3d3d3;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}#mermaid-svg-IFRao9B16tlIbDDp .milestone{transform:rotate(45deg) scale(0.8, 0.8)}#mermaid-svg-IFRao9B16tlIbDDp .milestoneText{font-style:italic}#mermaid-svg-IFRao9B16tlIbDDp .doneCritText0,#mermaid-svg-IFRao9B16tlIbDDp .doneCritText1,#mermaid-svg-IFRao9B16tlIbDDp .doneCritText2,#mermaid-svg-IFRao9B16tlIbDDp .doneCritText3{fill:#000 !important}#mermaid-svg-IFRao9B16tlIbDDp .activeCritText0,#mermaid-svg-IFRao9B16tlIbDDp .activeCritText1,#mermaid-svg-IFRao9B16tlIbDDp .activeCritText2,#mermaid-svg-IFRao9B16tlIbDDp .activeCritText3{fill:#000 !important}#mermaid-svg-IFRao9B16tlIbDDp .titleText{text-anchor:middle;font-size:18px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp g.classGroup text{fill:#9370db;stroke:none;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:10px}#mermaid-svg-IFRao9B16tlIbDDp g.classGroup text .title{font-weight:bolder}#mermaid-svg-IFRao9B16tlIbDDp g.clickable{cursor:pointer}#mermaid-svg-IFRao9B16tlIbDDp g.classGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-IFRao9B16tlIbDDp g.classGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-IFRao9B16tlIbDDp .classLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.5}#mermaid-svg-IFRao9B16tlIbDDp .classLabel .label{fill:#9370db;font-size:10px}#mermaid-svg-IFRao9B16tlIbDDp .relation{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-IFRao9B16tlIbDDp .dashed-line{stroke-dasharray:3}#mermaid-svg-IFRao9B16tlIbDDp #compositionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-IFRao9B16tlIbDDp #compositionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-IFRao9B16tlIbDDp #aggregationStart{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-IFRao9B16tlIbDDp #aggregationEnd{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-IFRao9B16tlIbDDp #dependencyStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-IFRao9B16tlIbDDp #dependencyEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-IFRao9B16tlIbDDp #extensionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-IFRao9B16tlIbDDp #extensionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-IFRao9B16tlIbDDp .commit-id,#mermaid-svg-IFRao9B16tlIbDDp .commit-msg,#mermaid-svg-IFRao9B16tlIbDDp .branch-label{fill:lightgrey;color:lightgrey;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp .pieTitleText{text-anchor:middle;font-size:25px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp .slice{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp g.stateGroup text{fill:#9370db;stroke:none;font-size:10px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp g.stateGroup text{fill:#9370db;fill:#333;stroke:none;font-size:10px}#mermaid-svg-IFRao9B16tlIbDDp g.statediagram-cluster .cluster-label text{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp g.stateGroup .state-title{font-weight:bolder;fill:#000}#mermaid-svg-IFRao9B16tlIbDDp g.stateGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-IFRao9B16tlIbDDp g.stateGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-IFRao9B16tlIbDDp .transition{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-IFRao9B16tlIbDDp .stateGroup .composit{fill:white;border-bottom:1px}#mermaid-svg-IFRao9B16tlIbDDp .stateGroup .alt-composit{fill:#e0e0e0;border-bottom:1px}#mermaid-svg-IFRao9B16tlIbDDp .state-note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-IFRao9B16tlIbDDp .state-note text{fill:black;stroke:none;font-size:10px}#mermaid-svg-IFRao9B16tlIbDDp .stateLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.7}#mermaid-svg-IFRao9B16tlIbDDp .edgeLabel text{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp .stateLabel text{fill:#000;font-size:10px;font-weight:bold;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-IFRao9B16tlIbDDp .node circle.state-start{fill:black;stroke:black}#mermaid-svg-IFRao9B16tlIbDDp .node circle.state-end{fill:black;stroke:white;stroke-width:1.5}#mermaid-svg-IFRao9B16tlIbDDp #statediagram-barbEnd{fill:#9370db}#mermaid-svg-IFRao9B16tlIbDDp .statediagram-cluster rect{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-IFRao9B16tlIbDDp .statediagram-cluster rect.outer{rx:5px;ry:5px}#mermaid-svg-IFRao9B16tlIbDDp .statediagram-state .divider{stroke:#9370db}#mermaid-svg-IFRao9B16tlIbDDp .statediagram-state .title-state{rx:5px;ry:5px}#mermaid-svg-IFRao9B16tlIbDDp .statediagram-cluster.statediagram-cluster .inner{fill:white}#mermaid-svg-IFRao9B16tlIbDDp .statediagram-cluster.statediagram-cluster-alt .inner{fill:#e0e0e0}#mermaid-svg-IFRao9B16tlIbDDp .statediagram-cluster .inner{rx:0;ry:0}#mermaid-svg-IFRao9B16tlIbDDp .statediagram-state rect.basic{rx:5px;ry:5px}#mermaid-svg-IFRao9B16tlIbDDp .statediagram-state rect.divider{stroke-dasharray:10,10;fill:#efefef}#mermaid-svg-IFRao9B16tlIbDDp .note-edge{stroke-dasharray:5}#mermaid-svg-IFRao9B16tlIbDDp .statediagram-note rect{fill:#fff5ad;stroke:#aa3;stroke-width:1px;rx:0;ry:0}:root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}#mermaid-svg-IFRao9B16tlIbDDp .error-icon{fill:#522}#mermaid-svg-IFRao9B16tlIbDDp .error-text{fill:#522;stroke:#522}#mermaid-svg-IFRao9B16tlIbDDp .edge-thickness-normal{stroke-width:2px}#mermaid-svg-IFRao9B16tlIbDDp .edge-thickness-thick{stroke-width:3.5px}#mermaid-svg-IFRao9B16tlIbDDp .edge-pattern-solid{stroke-dasharray:0}#mermaid-svg-IFRao9B16tlIbDDp .edge-pattern-dashed{stroke-dasharray:3}#mermaid-svg-IFRao9B16tlIbDDp .edge-pattern-dotted{stroke-dasharray:2}#mermaid-svg-IFRao9B16tlIbDDp .marker{fill:#333}#mermaid-svg-IFRao9B16tlIbDDp .marker.cross{stroke:#333}:root { --mermaid-font-family: "trebuchet ms", verdana, arial;}#mermaid-svg-IFRao9B16tlIbDDp {color: rgba(0, 0, 0, 0.75);font: ;}张三李四王五你好!李四, 最近怎么样?你最近怎么样,王五?我很好,谢谢!我很好,谢谢!李四想了很长时间, 文字太长了不适合放在一行.打量着王五...很好... 王五, 你怎么样?张三李四王五

这将产生一个流程图。:

#mermaid-svg-9PkLsAEyPnkMuxtv .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .label text{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .node rect,#mermaid-svg-9PkLsAEyPnkMuxtv .node circle,#mermaid-svg-9PkLsAEyPnkMuxtv .node ellipse,#mermaid-svg-9PkLsAEyPnkMuxtv .node polygon,#mermaid-svg-9PkLsAEyPnkMuxtv .node path{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-9PkLsAEyPnkMuxtv .node .label{text-align:center;fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .node.clickable{cursor:pointer}#mermaid-svg-9PkLsAEyPnkMuxtv .arrowheadPath{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .edgePath .path{stroke:#333;stroke-width:1.5px}#mermaid-svg-9PkLsAEyPnkMuxtv .flowchart-link{stroke:#333;fill:none}#mermaid-svg-9PkLsAEyPnkMuxtv .edgeLabel{background-color:#e8e8e8;text-align:center}#mermaid-svg-9PkLsAEyPnkMuxtv .edgeLabel rect{opacity:0.9}#mermaid-svg-9PkLsAEyPnkMuxtv .edgeLabel span{color:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .cluster rect{fill:#ffffde;stroke:#aa3;stroke-width:1px}#mermaid-svg-9PkLsAEyPnkMuxtv .cluster text{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:12px;background:#ffffde;border:1px solid #aa3;border-radius:2px;pointer-events:none;z-index:100}#mermaid-svg-9PkLsAEyPnkMuxtv .actor{stroke:#ccf;fill:#ECECFF}#mermaid-svg-9PkLsAEyPnkMuxtv text.actor>tspan{fill:#000;stroke:none}#mermaid-svg-9PkLsAEyPnkMuxtv .actor-line{stroke:grey}#mermaid-svg-9PkLsAEyPnkMuxtv .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .messageLine1{stroke-width:1.5;stroke-dasharray:2, 2;stroke:#333}#mermaid-svg-9PkLsAEyPnkMuxtv #arrowhead path{fill:#333;stroke:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .sequenceNumber{fill:#fff}#mermaid-svg-9PkLsAEyPnkMuxtv #sequencenumber{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv #crosshead path{fill:#333;stroke:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .messageText{fill:#333;stroke:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .labelBox{stroke:#ccf;fill:#ECECFF}#mermaid-svg-9PkLsAEyPnkMuxtv .labelText,#mermaid-svg-9PkLsAEyPnkMuxtv .labelText>tspan{fill:#000;stroke:none}#mermaid-svg-9PkLsAEyPnkMuxtv .loopText,#mermaid-svg-9PkLsAEyPnkMuxtv .loopText>tspan{fill:#000;stroke:none}#mermaid-svg-9PkLsAEyPnkMuxtv .loopLine{stroke-width:2px;stroke-dasharray:2, 2;stroke:#ccf;fill:#ccf}#mermaid-svg-9PkLsAEyPnkMuxtv .note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-9PkLsAEyPnkMuxtv .noteText,#mermaid-svg-9PkLsAEyPnkMuxtv .noteText>tspan{fill:#000;stroke:none}#mermaid-svg-9PkLsAEyPnkMuxtv .activation0{fill:#f4f4f4;stroke:#666}#mermaid-svg-9PkLsAEyPnkMuxtv .activation1{fill:#f4f4f4;stroke:#666}#mermaid-svg-9PkLsAEyPnkMuxtv .activation2{fill:#f4f4f4;stroke:#666}#mermaid-svg-9PkLsAEyPnkMuxtv .mermaid-main-font{font-family:"trebuchet ms", verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv .section{stroke:none;opacity:0.2}#mermaid-svg-9PkLsAEyPnkMuxtv .section0{fill:rgba(102,102,255,0.49)}#mermaid-svg-9PkLsAEyPnkMuxtv .section2{fill:#fff400}#mermaid-svg-9PkLsAEyPnkMuxtv .section1,#mermaid-svg-9PkLsAEyPnkMuxtv .section3{fill:#fff;opacity:0.2}#mermaid-svg-9PkLsAEyPnkMuxtv .sectionTitle0{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .sectionTitle1{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .sectionTitle2{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .sectionTitle3{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv .grid .tick{stroke:#d3d3d3;opacity:0.8;shape-rendering:crispEdges}#mermaid-svg-9PkLsAEyPnkMuxtv .grid .tick text{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv .grid path{stroke-width:0}#mermaid-svg-9PkLsAEyPnkMuxtv .today{fill:none;stroke:red;stroke-width:2px}#mermaid-svg-9PkLsAEyPnkMuxtv .task{stroke-width:2}#mermaid-svg-9PkLsAEyPnkMuxtv .taskText{text-anchor:middle;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv .taskText:not([font-size]){font-size:11px}#mermaid-svg-9PkLsAEyPnkMuxtv .taskTextOutsideRight{fill:#000;text-anchor:start;font-size:11px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv .taskTextOutsideLeft{fill:#000;text-anchor:end;font-size:11px}#mermaid-svg-9PkLsAEyPnkMuxtv .task.clickable{cursor:pointer}#mermaid-svg-9PkLsAEyPnkMuxtv .taskText.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-9PkLsAEyPnkMuxtv .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-9PkLsAEyPnkMuxtv .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-9PkLsAEyPnkMuxtv .taskText0,#mermaid-svg-9PkLsAEyPnkMuxtv .taskText1,#mermaid-svg-9PkLsAEyPnkMuxtv .taskText2,#mermaid-svg-9PkLsAEyPnkMuxtv .taskText3{fill:#fff}#mermaid-svg-9PkLsAEyPnkMuxtv .task0,#mermaid-svg-9PkLsAEyPnkMuxtv .task1,#mermaid-svg-9PkLsAEyPnkMuxtv .task2,#mermaid-svg-9PkLsAEyPnkMuxtv .task3{fill:#8a90dd;stroke:#534fbc}#mermaid-svg-9PkLsAEyPnkMuxtv .taskTextOutside0,#mermaid-svg-9PkLsAEyPnkMuxtv .taskTextOutside2{fill:#000}#mermaid-svg-9PkLsAEyPnkMuxtv .taskTextOutside1,#mermaid-svg-9PkLsAEyPnkMuxtv .taskTextOutside3{fill:#000}#mermaid-svg-9PkLsAEyPnkMuxtv .active0,#mermaid-svg-9PkLsAEyPnkMuxtv .active1,#mermaid-svg-9PkLsAEyPnkMuxtv .active2,#mermaid-svg-9PkLsAEyPnkMuxtv .active3{fill:#bfc7ff;stroke:#534fbc}#mermaid-svg-9PkLsAEyPnkMuxtv .activeText0,#mermaid-svg-9PkLsAEyPnkMuxtv .activeText1,#mermaid-svg-9PkLsAEyPnkMuxtv .activeText2,#mermaid-svg-9PkLsAEyPnkMuxtv .activeText3{fill:#000 !important}#mermaid-svg-9PkLsAEyPnkMuxtv .done0,#mermaid-svg-9PkLsAEyPnkMuxtv .done1,#mermaid-svg-9PkLsAEyPnkMuxtv .done2,#mermaid-svg-9PkLsAEyPnkMuxtv .done3{stroke:grey;fill:#d3d3d3;stroke-width:2}#mermaid-svg-9PkLsAEyPnkMuxtv .doneText0,#mermaid-svg-9PkLsAEyPnkMuxtv .doneText1,#mermaid-svg-9PkLsAEyPnkMuxtv .doneText2,#mermaid-svg-9PkLsAEyPnkMuxtv .doneText3{fill:#000 !important}#mermaid-svg-9PkLsAEyPnkMuxtv .crit0,#mermaid-svg-9PkLsAEyPnkMuxtv .crit1,#mermaid-svg-9PkLsAEyPnkMuxtv .crit2,#mermaid-svg-9PkLsAEyPnkMuxtv .crit3{stroke:#f88;fill:red;stroke-width:2}#mermaid-svg-9PkLsAEyPnkMuxtv .activeCrit0,#mermaid-svg-9PkLsAEyPnkMuxtv .activeCrit1,#mermaid-svg-9PkLsAEyPnkMuxtv .activeCrit2,#mermaid-svg-9PkLsAEyPnkMuxtv .activeCrit3{stroke:#f88;fill:#bfc7ff;stroke-width:2}#mermaid-svg-9PkLsAEyPnkMuxtv .doneCrit0,#mermaid-svg-9PkLsAEyPnkMuxtv .doneCrit1,#mermaid-svg-9PkLsAEyPnkMuxtv .doneCrit2,#mermaid-svg-9PkLsAEyPnkMuxtv .doneCrit3{stroke:#f88;fill:#d3d3d3;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}#mermaid-svg-9PkLsAEyPnkMuxtv .milestone{transform:rotate(45deg) scale(0.8, 0.8)}#mermaid-svg-9PkLsAEyPnkMuxtv .milestoneText{font-style:italic}#mermaid-svg-9PkLsAEyPnkMuxtv .doneCritText0,#mermaid-svg-9PkLsAEyPnkMuxtv .doneCritText1,#mermaid-svg-9PkLsAEyPnkMuxtv .doneCritText2,#mermaid-svg-9PkLsAEyPnkMuxtv .doneCritText3{fill:#000 !important}#mermaid-svg-9PkLsAEyPnkMuxtv .activeCritText0,#mermaid-svg-9PkLsAEyPnkMuxtv .activeCritText1,#mermaid-svg-9PkLsAEyPnkMuxtv .activeCritText2,#mermaid-svg-9PkLsAEyPnkMuxtv .activeCritText3{fill:#000 !important}#mermaid-svg-9PkLsAEyPnkMuxtv .titleText{text-anchor:middle;font-size:18px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv g.classGroup text{fill:#9370db;stroke:none;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:10px}#mermaid-svg-9PkLsAEyPnkMuxtv g.classGroup text .title{font-weight:bolder}#mermaid-svg-9PkLsAEyPnkMuxtv g.clickable{cursor:pointer}#mermaid-svg-9PkLsAEyPnkMuxtv g.classGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-9PkLsAEyPnkMuxtv g.classGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-9PkLsAEyPnkMuxtv .classLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.5}#mermaid-svg-9PkLsAEyPnkMuxtv .classLabel .label{fill:#9370db;font-size:10px}#mermaid-svg-9PkLsAEyPnkMuxtv .relation{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-9PkLsAEyPnkMuxtv .dashed-line{stroke-dasharray:3}#mermaid-svg-9PkLsAEyPnkMuxtv #compositionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-9PkLsAEyPnkMuxtv #compositionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-9PkLsAEyPnkMuxtv #aggregationStart{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-9PkLsAEyPnkMuxtv #aggregationEnd{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-9PkLsAEyPnkMuxtv #dependencyStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-9PkLsAEyPnkMuxtv #dependencyEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-9PkLsAEyPnkMuxtv #extensionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-9PkLsAEyPnkMuxtv #extensionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-9PkLsAEyPnkMuxtv .commit-id,#mermaid-svg-9PkLsAEyPnkMuxtv .commit-msg,#mermaid-svg-9PkLsAEyPnkMuxtv .branch-label{fill:lightgrey;color:lightgrey;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv .pieTitleText{text-anchor:middle;font-size:25px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv .slice{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv g.stateGroup text{fill:#9370db;stroke:none;font-size:10px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv g.stateGroup text{fill:#9370db;fill:#333;stroke:none;font-size:10px}#mermaid-svg-9PkLsAEyPnkMuxtv g.statediagram-cluster .cluster-label text{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv g.stateGroup .state-title{font-weight:bolder;fill:#000}#mermaid-svg-9PkLsAEyPnkMuxtv g.stateGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-9PkLsAEyPnkMuxtv g.stateGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-9PkLsAEyPnkMuxtv .transition{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-9PkLsAEyPnkMuxtv .stateGroup .composit{fill:white;border-bottom:1px}#mermaid-svg-9PkLsAEyPnkMuxtv .stateGroup .alt-composit{fill:#e0e0e0;border-bottom:1px}#mermaid-svg-9PkLsAEyPnkMuxtv .state-note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-9PkLsAEyPnkMuxtv .state-note text{fill:black;stroke:none;font-size:10px}#mermaid-svg-9PkLsAEyPnkMuxtv .stateLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.7}#mermaid-svg-9PkLsAEyPnkMuxtv .edgeLabel text{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .stateLabel text{fill:#000;font-size:10px;font-weight:bold;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-9PkLsAEyPnkMuxtv .node circle.state-start{fill:black;stroke:black}#mermaid-svg-9PkLsAEyPnkMuxtv .node circle.state-end{fill:black;stroke:white;stroke-width:1.5}#mermaid-svg-9PkLsAEyPnkMuxtv #statediagram-barbEnd{fill:#9370db}#mermaid-svg-9PkLsAEyPnkMuxtv .statediagram-cluster rect{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-9PkLsAEyPnkMuxtv .statediagram-cluster rect.outer{rx:5px;ry:5px}#mermaid-svg-9PkLsAEyPnkMuxtv .statediagram-state .divider{stroke:#9370db}#mermaid-svg-9PkLsAEyPnkMuxtv .statediagram-state .title-state{rx:5px;ry:5px}#mermaid-svg-9PkLsAEyPnkMuxtv .statediagram-cluster.statediagram-cluster .inner{fill:white}#mermaid-svg-9PkLsAEyPnkMuxtv .statediagram-cluster.statediagram-cluster-alt .inner{fill:#e0e0e0}#mermaid-svg-9PkLsAEyPnkMuxtv .statediagram-cluster .inner{rx:0;ry:0}#mermaid-svg-9PkLsAEyPnkMuxtv .statediagram-state rect.basic{rx:5px;ry:5px}#mermaid-svg-9PkLsAEyPnkMuxtv .statediagram-state rect.divider{stroke-dasharray:10,10;fill:#efefef}#mermaid-svg-9PkLsAEyPnkMuxtv .note-edge{stroke-dasharray:5}#mermaid-svg-9PkLsAEyPnkMuxtv .statediagram-note rect{fill:#fff5ad;stroke:#aa3;stroke-width:1px;rx:0;ry:0}:root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}#mermaid-svg-9PkLsAEyPnkMuxtv .error-icon{fill:#522}#mermaid-svg-9PkLsAEyPnkMuxtv .error-text{fill:#522;stroke:#522}#mermaid-svg-9PkLsAEyPnkMuxtv .edge-thickness-normal{stroke-width:2px}#mermaid-svg-9PkLsAEyPnkMuxtv .edge-thickness-thick{stroke-width:3.5px}#mermaid-svg-9PkLsAEyPnkMuxtv .edge-pattern-solid{stroke-dasharray:0}#mermaid-svg-9PkLsAEyPnkMuxtv .edge-pattern-dashed{stroke-dasharray:3}#mermaid-svg-9PkLsAEyPnkMuxtv .edge-pattern-dotted{stroke-dasharray:2}#mermaid-svg-9PkLsAEyPnkMuxtv .marker{fill:#333}#mermaid-svg-9PkLsAEyPnkMuxtv .marker.cross{stroke:#333}:root { --mermaid-font-family: "trebuchet ms", verdana, arial;}#mermaid-svg-9PkLsAEyPnkMuxtv {color: rgba(0, 0, 0, 0.75);font: ;}

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

FLowchart流程图

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

Created with Raphaël 2.3.0开始我的操作确认?结束yesno
  • 关于 Flowchart流程图 语法,参考 这儿.

导出与导入

导出

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

导入

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


  1. mermaid语法说明 ↩︎

  2. 注脚的解释 ↩︎

about page相关推荐

  1. Invoking Page() in async task.

    微信小程序出现这样的警告 一般都是js里面 没有写Page 才出现的 或者就是项目存在其他地方的错误, 这个时候就需要将错误解决之后再写回来, 网上还有说二级界面放在一级界面之下, 不要放在下面,不过 ...

  2. 关于Page翻页效果--Page View Controller

    Page View Controllers 你使用一个page view controller用page by page的方式来展示内容.一个page view controller管理一个self- ...

  3. vs2008与IIS 7.0使用在vista上时出现的问题及解决方法(Internet Explorer 无法显示该页面)(VS2008: IE Cannot Display Web Page)...

    我的系统是Vista Ultimate SP1,先安装了vs2008 ,然后再安装了IIS7.0之后就出现了一系列的问题. 问题:通过vs2008启动程序调试时报错.错误提示为:Internet Ex ...

  4. page分页php,Page分页函数

    提供一款实例的分类函数,有需要的朋友可以参考一下.<?php教程 // page分页函数 $page = $_get["page"]; function page($rows ...

  5. ASP.NET - Page 的生命周期

    初始化(Initialization) 页面被请求时,第一个被执行的总是构造函数(constructor). 你可以在这里初始化很多自定义属性或对象.不过这里有一些限制,因为 page 还没有被完全初 ...

  6. ASP.NET 2.0中Page事件的执行顺序

    Page 执行中将按照如下顺序激活事件: Page.PreInit Page.Init Page.InitComplite Page.PreLoad Page.Load Page.LoadComple ...

  7. umi脚手架搭建的项目_15天零成本搭建静态博客,托管于Github Page

    博客地址 技术栈概览 前台:Umi(路由) + Antd(视图) + TypeScript(增加项目可维护性以及规范性) 后台:Umi(路由) + Antd(视图) + TypeScript(增加项目 ...

  8. 完全隐藏Master Page Site Actions菜单只有管理员才可以看见

    1. 在Master Page Head 增加下面的Style <style type="text/css"> .ms-cui-tt { visibility:hidd ...

  9. Linux系统中的Page cache和Buffer cache

    Free命令显示内存 首先,我们来了解下内存的使用情况: Mem:表示物理内存统计 total:表示物理内存总量(total = used + free) used:表示总计分配给缓存(包含buffe ...

  10. Visual Studio 2008 Samples Page

    Visual Studio 2008 Samples Page http://msdn.microsoft.com/zh-cn/bb330936(en-us).aspx 如何实现 - 常规开发 htt ...

最新文章

  1. 简单支付验证(SPV)与创新
  2. python编程单片机_Micro Python:用Python语言控制单片机
  3. mapgis编辑属性结构编辑不了_MapGIS67操作手册(3-17)MapGIS67编辑线属性结构的方法...
  4. php jquery 源码,最新版jQuery 2.1.0完整
  5. python爬取新闻网站内容findall函数爬取_Python爬取新闻网标题、日期、点击量
  6. MySQL工作笔记-建表时为Float型数据确定精度,查询时精度显示,多列之和查询
  7. [转]MyBatis传入多个参数的问题 - mingyue1818
  8. 实验4-2-2 求e的近似值 (15 分)
  9. 用决策树模型求解回归问题(regression tree)
  10. processon画图软件
  11. C语言字符串转16进制
  12. pinphp3.0后台系统权限管理的bug
  13. 非极大值抑制(Non-Maximum Suppression,NMS)
  14. 常用装机必备(绿色免安装软件合集):破解高手菜鸟必备(每日更新总有一款适合您
  15. 联合分布、条件分布、边缘分布还有贝叶斯公式
  16. XXX客户2020年护网行动总结报告
  17. mysql 自己的ip怎么查看_如何查看连接mysql的ip地址
  18. 部分手机虚拟键盘的适配问题
  19. 实现私有CA和证书申请的脚本
  20. Eclipse初始化

热门文章

  1. [转载]Jquery mobile 新手问题总汇
  2. 员工管理的html页面,员工管理.html
  3. mysql启动日志指令_简单整理MySQL的日志操作命令
  4. linux fb设备驱动,linux设备驱动归纳总结(八):1.总线、设备和驱动
  5. FLEX- MDI窗口开发实例
  6. eclipse python_一文教你配置得心应手的Python
  7. C#调用GDAL算法进度信息传递
  8. 使用Maven构建Spring项目“HelloWorld”
  9. golang超时控制
  10. Memcached windows 下安装与应用