mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-21 09:16:41 +02:00
tweaks
adding some of the correct terms and references, depreciation
This commit is contained in:
@@ -472,20 +472,27 @@ gantt
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
### Timeline (with comments, CSS, settings, and Obsidian-style preprocessor)
|
### Timeline (with comments, CSS, config in frontmatter, directives)
|
||||||
|
|
||||||
```mermaid-example
|
```mermaid-example
|
||||||
---
|
---
|
||||||
# triple line MUST be first. yaml comment.
|
# triple line MUST be first to start frontmatter. Then, any consistent indent
|
||||||
|
# yaml style comment
|
||||||
displayMode: compact
|
displayMode: compact
|
||||||
|
config:
|
||||||
|
# theme: forest
|
||||||
|
# themeCSS: " #item36 { fill: CadetBlue } "
|
||||||
|
gantt:
|
||||||
|
useWidth: 400
|
||||||
|
|
||||||
---
|
---
|
||||||
%%{
|
%%{
|
||||||
init: {
|
init: {
|
||||||
'themeCSS': ' #item36 { fill: CadetBlue } ',
|
'Comment': 'Not official, but common JSON style comment',
|
||||||
'Comment': 'Not official, but common in JSON',
|
'Comment': 'Depreciated 2023 for frontmatter, easier to format, overrides frontmatter',
|
||||||
'themeCSS': ' rect[id^=workaround] { height: calc(100% - 50px) ; transform: translate(9px, 25px); y: 0; width: 1.5px; stroke: none; fill: red; } text[id^=workaround] { fill: red; y: 100%; font-size: 15px;}',
|
'themeCSS': ' #item36 { fill: CadetBlue } rect[id^=workaround] { height: calc(100% - 50px) ; transform: translate(9px, 25px); y: 0; width: 1.5px; stroke: none; fill: red; } text[id^=workaround] { fill: red; y: 100%; font-size: 15px;}',
|
||||||
'gantt':{
|
'gantt':{
|
||||||
'useWidth': 400, 'rightPadding': 0
|
'usedWidth': 400, 'rightPadding': 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}%%
|
}%%
|
||||||
@@ -500,13 +507,13 @@ gantt
|
|||||||
section Issue19062
|
section Issue19062
|
||||||
71 : item71, 1900, 1930
|
71 : item71, 1900, 1930
|
||||||
section Issue19401
|
section Issue19401
|
||||||
36 : item36, 1913, 1935
|
36 : item36, 1913, 1935 %% themeCSS targets #item36 as id directly
|
||||||
section Issue1300
|
section Issue1300
|
||||||
94 : item94, 1910, 1915
|
94 : item94, 1910, 1915
|
||||||
5 : item5, 1920, 1925
|
5 : item5, 1920, 1925
|
||||||
0 : milestone, item0, 1918, 1s
|
0 : milestone, item0, 1918, 1s
|
||||||
9 : vert, 1906, 1s %% not yet official
|
9 : vert, 1906, 1s %% not yet official
|
||||||
64 : workaround, 1923, 1s %% custom CSS object https://github.com/mermaid-js/mermaid/issues/3250
|
64 : workaround, 1923, 1s %% custom CSS object in themeCSS https://github.com/mermaid-js/mermaid/issues/3250
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user