This repository has been archived by the owner on Dec 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow specifying code languages that get automatically promoted into …
…kroki blocks
- Loading branch information
Showing
6 changed files
with
101 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Sample image | ||
|
||
Some Text | ||
|
||
![An image](images/afc39df4753b3177ac90e72d3bc7d06f.svg "The best image ever") | ||
|
||
## More text | ||
|
||
Something interesting to say .... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
## Sample image | ||
|
||
Some Text | ||
|
||
```mermaid imgAlt="An image" imgTitle="The best image ever" | ||
graph TD | ||
subgraph Shop X | ||
Bx(Shop X) --> FX1((Fs X1)) --> Bx | ||
Bx --> FX2((Fs X2)) --> Bx | ||
end | ||
subgraph Shop Y | ||
By(Shop Y) --> FY1((Fs Y1)) --> By | ||
By --> FY2((Fs Y2)) --> By | ||
end | ||
subgraph Shop Z | ||
Bz(Shop Z) --> FZ1((Fs Z1)) --> Bz | ||
Bz --> FZ2((Fs Z2)) --> Bz | ||
end | ||
A(Data Center) --> Bx --> A | ||
A --> By --> A | ||
A --> Bz --> A | ||
``` | ||
|
||
## More text | ||
|
||
Something interesting to say .... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = { | ||
lang: "kroki", | ||
langAliases: ["mermaid"], | ||
imgDir: "./images", | ||
imgRefDir: "images", | ||
krokiBase: "https://kroki.io" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters