Skip to content

Commit

Permalink
Fix mermaid rendering
Browse files Browse the repository at this point in the history
Resolves #334

Fixed one graph because of hiccup
  • Loading branch information
oodamien authored and cppwfs committed Jan 22, 2021
1 parent 0a579eb commit a5d5307
Show file tree
Hide file tree
Showing 4 changed files with 1,353 additions and 1,160 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ graph TD;
A --> |No| B{Is Docker Container on Kubernetes?}
B --> |Yes| C{Are you using entry point of shell in container?}
C --> |Yes| E{Are you using default entry point style}--> |Yes| F(Launch task with 'entryPointStyle' deployer property with value of 'shell')
E --> |No| H(Execute 'kubectl describe pod <name>')
E --> |No| H(Execute 'kubectl describe pod name')
H --> I(Verify that your shell is passing SPRING_CLOUD_TASK_EXECUTIONID to the task app)
B --> |No| J(Verify that you are not passing spring.cloud.task.executionid)
J --> K(Data Flow does this for you)
Expand Down
2 changes: 1 addition & 1 deletion gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const plugins = [
{
resolve: 'gatsby-remark-mermaid',
options: {
theme: null,
theme: 'forest',
},
},
{
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
"gatsby": "2.26.1",
"gatsby-cli": "2.13.1",
"gatsby-image": "2.5.0",
"gatsby-legacy-polyfills": "0.6.0",
"gatsby-plugin-algolia": "0.5.0",
"gatsby-plugin-catch-links": "2.2.1",
"gatsby-plugin-google-analytics": "2.2.2",
Expand All @@ -124,18 +125,17 @@
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-grid-tables": "0.0.3",
"gatsby-remark-images": "3.2.2",
"gatsby-remark-mermaid": "1.2.0",
"gatsby-remark-mermaid": "2.1.0",
"gatsby-remark-prismjs": "3.4.1",
"gatsby-remark-responsive-iframe": "2.3.1",
"gatsby-source-filesystem": "2.2.2",
"gatsby-transformer-remark": "2.7.1",
"gatsby-transformer-remark": "2.15.0",
"gatsby-transformer-sharp": "2.4.4",
"lodash.assign": "4.2.0",
"lodash.endswith": "4.2.1",
"lodash.get": "4.4.2",
"lodash.set": "4.3.2",
"lodash.startswith": "4.2.1",
"mermaid": "8.4.8",
"node-sass": "4.13.1",
"npm-check-updates": "4.1.1",
"prismjs": "1.21.0",
Expand Down Expand Up @@ -172,6 +172,7 @@
"lint-staged": "10.1.2",
"ncp": "2.0.0",
"prettier": "2.0.4",
"pretty-quick": "2.0.1"
"pretty-quick": "2.0.1",
"puppeteer": "5.5.0"
}
}
Loading

0 comments on commit a5d5307

Please sign in to comment.