mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-02-04 07:13:25 +08:00
Merge branch 'master' into develop
This commit is contained in:
commit
47af4760bc
@ -154,7 +154,8 @@
|
|||||||
"xlink",
|
"xlink",
|
||||||
"yash",
|
"yash",
|
||||||
"yokozuna",
|
"yokozuna",
|
||||||
"zenuml"
|
"zenuml",
|
||||||
|
"zune"
|
||||||
],
|
],
|
||||||
"patterns": [
|
"patterns": [
|
||||||
{ "name": "Markdown links", "pattern": "\\((.*)\\)", "description": "" },
|
{ "name": "Markdown links", "pattern": "\\((.*)\\)", "description": "" },
|
||||||
|
@ -18,7 +18,11 @@ const utf8ToB64 = (str: string): string => {
|
|||||||
return Buffer.from(decodeURIComponent(encodeURIComponent(str))).toString('base64');
|
return Buffer.from(decodeURIComponent(encodeURIComponent(str))).toString('base64');
|
||||||
};
|
};
|
||||||
|
|
||||||
const batchId: string = 'mermaid-batch-' + Cypress.env('CYPRESS_COMMIT') || Date.now().toString();
|
const batchId: string =
|
||||||
|
'mermaid-batch-' +
|
||||||
|
(Cypress.env('useAppli')
|
||||||
|
? Date.now().toString()
|
||||||
|
: Cypress.env('CYPRESS_COMMIT') || Date.now().toString());
|
||||||
|
|
||||||
export const mermaidUrl = (
|
export const mermaidUrl = (
|
||||||
graphStr: string,
|
graphStr: string,
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
|
|
||||||
# Announcements
|
# Announcements
|
||||||
|
|
||||||
## [From Chaos to Clarity: Exploring Mind Maps with MermaidJS](https://www.mermaidchart.com/blog/posts/from-chaos-to-clarity-exploring-mind-maps-with-mermaidjs)
|
## [Special cases broke Microsoft Zune and can ruin your code base too](https://www.mermaidchart.com/blog/posts/special-cases-broke-microsoft-zune-and-can-ruin-your-code-base-too/)
|
||||||
|
|
||||||
24 July 2023 · 4 mins
|
23 August 2023 · 15 mins
|
||||||
|
|
||||||
Introducing the concept of mind mapping as a tool for organizing complex information, and highlights Mermaid as a user-friendly software that simplifies the creation and editing of mind maps for applications in IT solution design, business decision-making, and knowledge organization.
|
Read about the pitfalls of special cases in programming, illustrating how they can lead to complexity, diminish readability, and create maintenance challenges.
|
||||||
|
@ -6,6 +6,24 @@
|
|||||||
|
|
||||||
# Blog
|
# Blog
|
||||||
|
|
||||||
|
## [Special cases broke Microsoft Zune and can ruin your code base too](https://www.mermaidchart.com/blog/posts/special-cases-broke-microsoft-zune-and-can-ruin-your-code-base-too/)
|
||||||
|
|
||||||
|
23 August 2023 · 15 mins
|
||||||
|
|
||||||
|
Read about the pitfalls of special cases in programming, illustrating how they can lead to complexity, diminish readability, and create maintenance challenges.
|
||||||
|
|
||||||
|
## [New AI chatbot now available on Mermaid Chart to simplify text-based diagram creation](https://www.mermaidchart.com/blog/posts/ai-chatbot-now-available-on-mermaid-chart-to-simplify-text-based-diagram-creation/)
|
||||||
|
|
||||||
|
14 August 2023 · 4 mins
|
||||||
|
|
||||||
|
Introducing Mermaid Chart’s new AI chatbot, a diagramming assistant that simplifies text-based diagram creation for everyone, from developers to educators, offering features to start, edit, and fix diagrams, and embodying our vision to make diagramming accessible, user-friendly, and fun.
|
||||||
|
|
||||||
|
## [Believe It or Not, You Still Need an Online UML Diagram Tool](https://www.mermaidchart.com/blog/posts/uml-diagram-tool/)
|
||||||
|
|
||||||
|
14 August 2023 · 8 mins
|
||||||
|
|
||||||
|
A UML diagram tool helps developers and other professionals quickly create and share UML diagrams that communicate information about complex software systems.
|
||||||
|
|
||||||
## [From Chaos to Clarity: Exploring Mind Maps with MermaidJS](https://www.mermaidchart.com/blog/posts/from-chaos-to-clarity-exploring-mind-maps-with-mermaidjs)
|
## [From Chaos to Clarity: Exploring Mind Maps with MermaidJS](https://www.mermaidchart.com/blog/posts/from-chaos-to-clarity-exploring-mind-maps-with-mermaidjs)
|
||||||
|
|
||||||
24 July 2023 · 4 mins
|
24 July 2023 · 4 mins
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mermaid",
|
"name": "mermaid",
|
||||||
"version": "10.3.1",
|
"version": "10.4.0",
|
||||||
"description": "Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
|
"description": "Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"module": "./dist/mermaid.core.mjs",
|
"module": "./dist/mermaid.core.mjs",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# Announcements
|
# Announcements
|
||||||
|
|
||||||
## [From Chaos to Clarity: Exploring Mind Maps with MermaidJS](https://www.mermaidchart.com/blog/posts/from-chaos-to-clarity-exploring-mind-maps-with-mermaidjs)
|
## [Special cases broke Microsoft Zune and can ruin your code base too](https://www.mermaidchart.com/blog/posts/special-cases-broke-microsoft-zune-and-can-ruin-your-code-base-too/)
|
||||||
|
|
||||||
24 July 2023 · 4 mins
|
23 August 2023 · 15 mins
|
||||||
|
|
||||||
Introducing the concept of mind mapping as a tool for organizing complex information, and highlights Mermaid as a user-friendly software that simplifies the creation and editing of mind maps for applications in IT solution design, business decision-making, and knowledge organization.
|
Read about the pitfalls of special cases in programming, illustrating how they can lead to complexity, diminish readability, and create maintenance challenges.
|
||||||
|
@ -1,5 +1,23 @@
|
|||||||
# Blog
|
# Blog
|
||||||
|
|
||||||
|
## [Special cases broke Microsoft Zune and can ruin your code base too](https://www.mermaidchart.com/blog/posts/special-cases-broke-microsoft-zune-and-can-ruin-your-code-base-too/)
|
||||||
|
|
||||||
|
23 August 2023 · 15 mins
|
||||||
|
|
||||||
|
Read about the pitfalls of special cases in programming, illustrating how they can lead to complexity, diminish readability, and create maintenance challenges.
|
||||||
|
|
||||||
|
## [New AI chatbot now available on Mermaid Chart to simplify text-based diagram creation](https://www.mermaidchart.com/blog/posts/ai-chatbot-now-available-on-mermaid-chart-to-simplify-text-based-diagram-creation/)
|
||||||
|
|
||||||
|
14 August 2023 · 4 mins
|
||||||
|
|
||||||
|
Introducing Mermaid Chart’s new AI chatbot, a diagramming assistant that simplifies text-based diagram creation for everyone, from developers to educators, offering features to start, edit, and fix diagrams, and embodying our vision to make diagramming accessible, user-friendly, and fun.
|
||||||
|
|
||||||
|
## [Believe It or Not, You Still Need an Online UML Diagram Tool](https://www.mermaidchart.com/blog/posts/uml-diagram-tool/)
|
||||||
|
|
||||||
|
14 August 2023 · 8 mins
|
||||||
|
|
||||||
|
A UML diagram tool helps developers and other professionals quickly create and share UML diagrams that communicate information about complex software systems.
|
||||||
|
|
||||||
## [From Chaos to Clarity: Exploring Mind Maps with MermaidJS](https://www.mermaidchart.com/blog/posts/from-chaos-to-clarity-exploring-mind-maps-with-mermaidjs)
|
## [From Chaos to Clarity: Exploring Mind Maps with MermaidJS](https://www.mermaidchart.com/blog/posts/from-chaos-to-clarity-exploring-mind-maps-with-mermaidjs)
|
||||||
|
|
||||||
24 July 2023 · 4 mins
|
24 July 2023 · 4 mins
|
||||||
|
55
pnpm-lock.yaml
generated
55
pnpm-lock.yaml
generated
@ -481,61 +481,6 @@ importers:
|
|||||||
specifier: ^7.0.0
|
specifier: ^7.0.0
|
||||||
version: 7.0.0
|
version: 7.0.0
|
||||||
|
|
||||||
packages/mermaid/src/vitepress:
|
|
||||||
dependencies:
|
|
||||||
'@vueuse/core':
|
|
||||||
specifier: ^10.1.0
|
|
||||||
version: 10.1.0(vue@3.3.4)
|
|
||||||
jiti:
|
|
||||||
specifier: ^1.18.2
|
|
||||||
version: 1.18.2
|
|
||||||
mermaid:
|
|
||||||
specifier: workspace:^
|
|
||||||
version: link:../..
|
|
||||||
vue:
|
|
||||||
specifier: ^3.3
|
|
||||||
version: 3.3.4
|
|
||||||
devDependencies:
|
|
||||||
'@iconify-json/carbon':
|
|
||||||
specifier: ^1.1.16
|
|
||||||
version: 1.1.16
|
|
||||||
'@unocss/reset':
|
|
||||||
specifier: ^0.55.2
|
|
||||||
version: 0.55.2
|
|
||||||
'@vite-pwa/vitepress':
|
|
||||||
specifier: ^0.2.0
|
|
||||||
version: 0.2.0(vite-plugin-pwa@0.16.0)
|
|
||||||
'@vitejs/plugin-vue':
|
|
||||||
specifier: ^4.2.1
|
|
||||||
version: 4.2.1(vite@4.3.9)(vue@3.3.4)
|
|
||||||
fast-glob:
|
|
||||||
specifier: ^3.2.12
|
|
||||||
version: 3.2.12
|
|
||||||
https-localhost:
|
|
||||||
specifier: ^4.7.1
|
|
||||||
version: 4.7.1
|
|
||||||
pathe:
|
|
||||||
specifier: ^1.1.0
|
|
||||||
version: 1.1.0
|
|
||||||
unocss:
|
|
||||||
specifier: ^0.55.2
|
|
||||||
version: 0.55.2(postcss@8.4.27)(rollup@2.79.1)(vite@4.3.9)
|
|
||||||
unplugin-vue-components:
|
|
||||||
specifier: ^0.25.0
|
|
||||||
version: 0.25.0(rollup@2.79.1)(vue@3.3.4)
|
|
||||||
vite:
|
|
||||||
specifier: ^4.3.9
|
|
||||||
version: 4.3.9(@types/node@18.16.0)
|
|
||||||
vite-plugin-pwa:
|
|
||||||
specifier: ^0.16.0
|
|
||||||
version: 0.16.0(vite@4.3.9)(workbox-build@7.0.0)(workbox-window@7.0.0)
|
|
||||||
vitepress:
|
|
||||||
specifier: 1.0.0-rc.4
|
|
||||||
version: 1.0.0-rc.4(@algolia/client-search@4.14.2)(@types/node@18.16.0)(search-insights@2.6.0)
|
|
||||||
workbox-window:
|
|
||||||
specifier: ^7.0.0
|
|
||||||
version: 7.0.0
|
|
||||||
|
|
||||||
tests/webpack:
|
tests/webpack:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@mermaid-js/mermaid-example-diagram':
|
'@mermaid-js/mermaid-example-diagram':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user