diff --git a/CHANGELOG.md b/CHANGELOG.md index 76496f076f..db6be90649 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,7 @@ - Missing fontawesome icon support [\#830](https://github.com/knsv/mermaid/issues/830) - Docs for integration with wiki.js? [\#829](https://github.com/knsv/mermaid/issues/829) - Is this project still maintained? [\#826](https://github.com/knsv/mermaid/issues/826) -- typroa [\#823](https://github.com/knsv/mermaid/issues/823) +- typora [\#823](https://github.com/knsv/mermaid/issues/823) - Maintain the order of the nodes in Flowchart [\#815](https://github.com/knsv/mermaid/issues/815) - Overlap, Overflow and cut titles in flowchart [\#814](https://github.com/knsv/mermaid/issues/814) - How load mermaidApi notejs electron [\#813](https://github.com/knsv/mermaid/issues/813) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 738daab231..c92f8d5730 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -114,7 +114,7 @@ Finally, if it is not in the documentation, no one will know about it and then * The docs are located in the docs folder and are ofc written in markdown. Just pick the right section and start typing. If you want to add to the structure as in adding a new section and new file you do that via the _navbar.md. -The changes in master is reflected in http://mermaid-js.github.io/mermaid/ once released the updates are committed to https://mermaid-js.github.io/#/ +The changes in master is reflected in https://mermaid-js.github.io/mermaid/ once released the updates are committed to https://mermaid-js.github.io/#/ ## Last words diff --git a/cypress/platform/class.html b/cypress/platform/class.html index ae4e18a5b7..0c1fcebb35 100644 --- a/cypress/platform/class.html +++ b/cypress/platform/class.html @@ -78,7 +78,7 @@

info below

a_a --> c --> d_d --> c_c classDef apa fill:#f9f,stroke:#333,stroke-width:4px; class a_a apa; - click a_a "http://www.aftonbladet.se" "apa" + click a_a "https://www.aftonbladet.se" "apa" diff --git a/docs/8.6.0_docs.md b/docs/8.6.0_docs.md index f5ebfc1ab4..99435b7e82 100644 --- a/docs/8.6.0_docs.md +++ b/docs/8.6.0_docs.md @@ -203,7 +203,7 @@ Ensures options parameter does not attempt to override siteConfig secure keys. | Parameter | Description |Type | Required | Values| | --- | --- | --- | --- | --- | -| conf| base set of values, which currentConfig coul be reset to.| Dictionary | Required | Any Values, with respect to the secure Array| +| conf| base set of values, which currentConfig could be reset to.| Dictionary | Required | Any Values, with respect to the secure Array| ```note default: current siteConfig (optional, default `getSiteConfig()`) diff --git a/docs/Setup.md b/docs/Setup.md index f6c84610aa..e7723f5395 100644 --- a/docs/Setup.md +++ b/docs/Setup.md @@ -818,13 +818,13 @@ Default value: 'TB' ### entityPadding -| Parameter | Description | Type | Required | Values | -| ------------- | ----------------------------------------------------------- | ------- | -------- | ------------------ | -| entityPadding | Minimum internal padding betweentext in box and box borders | Integer | 4 | Any Positive Value | +| Parameter | Description | Type | Required | Values | +| ------------- | ------------------------------------------------------------ | ------- | -------- | ------------------ | +| entityPadding | Minimum internal padding between text in box and box borders | Integer | 4 | Any Positive Value | **Notes:** -The minimum internal padding betweentext in an entity box and the enclosing box borders, +The minimum internal padding between text in an entity box and the enclosing box borders, expressed in pixels. Default value: 15 @@ -1004,9 +1004,9 @@ Pushes in a directive to the configuration ## conf -| Parameter | Description | Type | Required | Values | -| --------- | ------------------------------------------------------------- | ---------- | -------- | -------------------------------------------- | -| conf | base set of values, which currentConfig coul be **reset** to. | Dictionary | Required | Any Values, with respect to the secure Array | +| Parameter | Description | Type | Required | Values | +| --------- | -------------------------------------------------------------- | ---------- | -------- | -------------------------------------------- | +| conf | base set of values, which currentConfig could be **reset** to. | Dictionary | Required | Any Values, with respect to the secure Array | **Notes**: (default: current siteConfig ) (optional, default `getSiteConfig()`) diff --git a/docs/classDiagram.md b/docs/classDiagram.md index 18dc126568..07a9aec3cc 100644 --- a/docs/classDiagram.md +++ b/docs/classDiagram.md @@ -384,9 +384,9 @@ _URL Link:_ ```mmd classDiagram class Shape -link Shape "http://www.github.com" "This is a tooltip for a link" +link Shape "https://www.github.com" "This is a tooltip for a link" class Shape2 -click Shape2 href "http://www.github.com" "This is a tooltip for a link" +click Shape2 href "https://www.github.com" "This is a tooltip for a link" ``` _Callback:_ @@ -412,11 +412,11 @@ classDiagram class Class01 class Class02 callback Class01 "callbackFunction" "Callback tooltip" - link Class02 "http://www.github.com" "This is a link" + link Class02 "https://www.github.com" "This is a link" class Class03 class Class04 click Class03 call callbackFunction() "Callback tooltip" - click Class04 href "http://www.github.com" "This is a link" + click Class04 href "https://www.github.com" "This is a link" ``` > **Success** The tooltip functionality and the ability to link to urls are available from version 0.5.2. @@ -449,7 +449,7 @@ Beginners tip, a full example using interactive links in an html context: } callback Duck callback "Tooltip" - link Zebra "http://www.github.com" "This is a link" + link Zebra "https://www.github.com" "This is a link"