summaryrefslogtreecommitdiff
path: root/themes/blowfish/exampleSite/content/samples/diagrams-flowcharts/index.zh-cn.md
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-04-29 22:50:58 +0200
committerChristoph Cullmann <cullmann@kde.org>2024-04-29 22:50:58 +0200
commit015090549306ba6fd0c84a874b58559c4a1fa8fb (patch)
tree75fdfde4a7a3eb2431b36d1bad7409939be5e4d5 /themes/blowfish/exampleSite/content/samples/diagrams-flowcharts/index.zh-cn.md
parentccbdfed13b8195d550899d66bf193d2fd33880e9 (diff)
update theme without example page
Diffstat (limited to 'themes/blowfish/exampleSite/content/samples/diagrams-flowcharts/index.zh-cn.md')
-rwxr-xr-xthemes/blowfish/exampleSite/content/samples/diagrams-flowcharts/index.zh-cn.md102
1 files changed, 0 insertions, 102 deletions
diff --git a/themes/blowfish/exampleSite/content/samples/diagrams-flowcharts/index.zh-cn.md b/themes/blowfish/exampleSite/content/samples/diagrams-flowcharts/index.zh-cn.md
deleted file mode 100755
index bd9f9bb..0000000
--- a/themes/blowfish/exampleSite/content/samples/diagrams-flowcharts/index.zh-cn.md
+++ /dev/null
@@ -1,102 +0,0 @@
----
-title: "流程图和思维导图"
-date: 2019-03-06
-description: "Blowfish 中 Mermaid 的使用指南"
-summary: "使用 Mermaid 可以轻松地将图表和流程图添加到文章中。"
-tags: ["mermaid", "示例", "流程图", "简码"]
-type: 'sample'
----
-
-Blowfish 使用 `mermaid` 简码可以调用。Blowfish 会根据配置的 `colorScheme` 参数自动调用 Mermaid 生成流程图或者思维导图。
-
-有关更多详细信息,请参阅 [Mermaid 简码]({{< ref "docs/shortcodes#mermaid" >}}) 文档。
-
-下面的示例是从[官方 Mermaid 文档](https://mermaid-js.github.io/mermaid/) 中选取的一小部分。您还可以在 GitHub 上[查看页面源代码](https://raw.githubusercontent.com/nunocoracao/blowfish/main/exampleSite/content/samples/diagrams-flowcharts/index.md) 查看书写方法。
-
-## 流程图
-
-<div style="background-color:white; padding: 20px">
-{{< mermaid >}}
-graph TD
-A[Christmas] -->|Get money| B(Go shopping)
-B --> C{Let me think}
-B --> G[/Another/]
-C ==>|One| D[Laptop]
-C -->|Two| E[iPhone]
-C -->|Three| F[Car]
-subgraph Section
-C
-D
-E
-F
-G
-end
-{{< /mermaid >}}
-</div>
-
-## 时序图
-
-<div style="background-color:white; padding: 20px">
-{{< mermaid >}}
-sequenceDiagram
-autonumber
-par Action 1
-Alice->>John: Hello John, how are you?
-and Action 2
-Alice->>Bob: Hello Bob, how are you?
-end
-Alice->>+John: Hello John, how are you?
-Alice->>+John: John, can you hear me?
-John-->>-Alice: Hi Alice, I can hear you!
-Note right of John: John is perceptive
-John-->>-Alice: I feel great!
-loop Every minute
-John-->Alice: Great!
-end
-{{< /mermaid >}}
-</div>
-
-## 类图
-
-<div style="background-color:white; padding: 20px">
-{{< mermaid >}}
-classDiagram
-Animal "1" <|-- Duck
-Animal <|-- Fish
-Animal <--o Zebra
-Animal : +int age
-Animal : +String gender
-Animal: +isMammal()
-Animal: +mate()
-class Duck{
-+String beakColor
-+swim()
-+quack()
-}
-class Fish{
--int sizeInFeet
--canEat()
-}
-class Zebra{
-+bool is_wild
-+run()
-}
-{{< /mermaid >}}
-</div>
-
-## 实体关系图
-
-<div style="background-color:white; padding: 20px">
-{{< mermaid >}}
-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"
-{{< /mermaid >}}
-</div>
-