-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' into pr/Yokozuna59/5345
* next: (100 commits) Resolves E2E testing issues and issue #5343 Fix spelling Fix community integrations Fix docs docs: Fix config Update all minor dependencies Amend docs to document gitgraph parallel commits Fix lint Use Yarn Add COREPACK_ENABLE_STRICT Added link to Blazorade Mermaid to the community integrations page. Bump node version Add lcov to cspell Correcting path to docker-entrypoint.sh Update recommended Vitest extension Replace mermaid-js.github.io links Replace links to docs with links to webhelp Link to contributing page on webhelp Changes to timeline.md 1. Added colons to all 'NOTES' for consistency. Changes to timeline.md 1. Updates the Wikipedia citation to include a link. 2. Removed periods from documentation sections to be consistent (some had periods, some didn't) 3. Added a space to a coding example for spacing consistency. Replace version number placeholder ...
- Loading branch information
Showing
133 changed files
with
5,404 additions
and
3,184 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
# This file contains coding related terms | ||
ALPHANUM | ||
antiscript | ||
APPLYCLASS | ||
ARROWHEADSTYLE | ||
ARROWTYPE | ||
autonumber | ||
axisl-line | ||
Bigdecimal | ||
birel | ||
BIREL | ||
bqstring | ||
BQUOTE | ||
bramp | ||
BRKT | ||
callbackargs | ||
callbackname | ||
classdef | ||
classdefid | ||
classentity | ||
classname | ||
COLONSEP | ||
COMPOSIT_STATE | ||
concat | ||
controlx | ||
controly | ||
CSSCLASS | ||
CYLINDEREND | ||
CYLINDERSTART | ||
datakey | ||
DEND | ||
descr | ||
distp | ||
distq | ||
divs | ||
docref | ||
DOMID | ||
doublecircle | ||
DOUBLECIRCLEEND | ||
DOUBLECIRCLESTART | ||
DQUOTE | ||
DSTART | ||
edgesep | ||
EMPTYSTR | ||
enddate | ||
ERDIAGRAM | ||
flatmap | ||
forwardable | ||
frontmatter | ||
funs | ||
gantt | ||
GENERICTYPE | ||
getBoundarys | ||
grammr | ||
graphtype | ||
iife | ||
interp | ||
introdcued | ||
INVTRAPEND | ||
INVTRAPSTART | ||
JDBC | ||
jison | ||
Kaufmann | ||
keyify | ||
LABELPOS | ||
LABELTYPE | ||
lcov | ||
LEFTOF | ||
Lexa | ||
linebreak | ||
LINETYPE | ||
LINKSTYLE | ||
LLABEL | ||
loglevel | ||
LOGMSG | ||
lookaheads | ||
mdast | ||
metafile | ||
minlen | ||
Mstartx | ||
MULT | ||
NODIR | ||
NSTR | ||
outdir | ||
Qcontrolx | ||
reinit | ||
rels | ||
reqs | ||
rewritelinks | ||
rgba | ||
RIGHTOF | ||
sankey | ||
sequencenumber | ||
shrc | ||
signaltype | ||
someclass | ||
SPACELINE | ||
SPACELIST | ||
STADIUMEND | ||
STADIUMSTART | ||
startdate | ||
startx | ||
starty | ||
STMNT | ||
stopx | ||
stopy | ||
strikethrough | ||
stringifying | ||
struct | ||
STYLECLASS | ||
STYLEOPTS | ||
subcomponent | ||
subcomponents | ||
SUBROUTINEEND | ||
SUBROUTINESTART | ||
Subschemas | ||
substr | ||
TAGEND | ||
TAGSTART | ||
techn | ||
TESTSTR | ||
TEXTDATA | ||
TEXTLENGTH | ||
titlevalue | ||
topbar | ||
TRAPEND | ||
TRAPSTART | ||
ts-nocheck | ||
tsdoc | ||
typeof | ||
typestr | ||
unshift | ||
verifymethod | ||
VERIFYMTHD | ||
WARN_DOCSDIR_DOESNT_MATCH | ||
xhost | ||
yaxis | ||
yfunc | ||
yytext | ||
zenuml |
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,8 @@ | ||
# Contributors to mermaidjs, one per line | ||
Ashish Jain | ||
cpettitt | ||
Dong Cai | ||
Nikolay Rozhkov | ||
Peng Xiao | ||
subhash-halder | ||
Vinod Sidharth |
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,52 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json | ||
|
||
$schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json | ||
|
||
dictionaryDefinitions: | ||
- name: code-terms | ||
path: ./code-terms.txt | ||
description: A list of coding related terms. | ||
addWords: true | ||
- name: mermaid-terms | ||
path: ./mermaid-terms.txt | ||
description: A list of terms related to the mermaid project. | ||
addWords: true | ||
- name: misc-terms | ||
path: ./misc-terms.txt | ||
description: A list of miscellaneous terms. | ||
- name: 3rd-party-terms | ||
path: ./libraries.txt | ||
description: A list of 3rd party terms from dependencies. | ||
addWords: true | ||
- name: contributors | ||
path: ./contributors.txt | ||
description: A list of contributors to the mermaid project. | ||
type: 'W' | ||
addWords: true | ||
|
||
# cspell:disable | ||
- name: suggestions | ||
words: | ||
- none | ||
suggestWords: | ||
- seperator:separator | ||
- vertice:vertex | ||
# cspell:enable | ||
|
||
patterns: | ||
- name: character-set-cyrillic | ||
pattern: '/\p{Script_Extensions=Cyrillic}+/gu' | ||
- name: svg-block | ||
pattern: '<svg[\S\s]+?</svg>' | ||
- name: json-property | ||
pattern: '/"[\w/@-]+":/g' | ||
|
||
dictionaries: | ||
- mermaid-terms | ||
- suggestions | ||
- contributors | ||
|
||
ignorePaths: | ||
- '*.txt' # do not spell check local dictionaries | ||
|
||
# cspell:dictionary misc-terms |
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,71 @@ | ||
# Add third party library terms below | ||
acyclicer | ||
Antlr | ||
Appli | ||
applitools | ||
Asciidoctor | ||
Astah | ||
automerge | ||
bilkent | ||
bisheng | ||
Blazor | ||
codedoc | ||
Codemia | ||
codepaths | ||
csstree | ||
cytoscape | ||
cytoscape-cose-bilkent | ||
dagre | ||
dagre-d3 | ||
Deepdwn | ||
Docsify | ||
Docsy | ||
DokuWiki | ||
dompurify | ||
elkjs | ||
fontawesome | ||
Foswiki | ||
Gitea | ||
graphlib | ||
Grav | ||
iconify | ||
Inkdrop | ||
jiti | ||
jsdocs | ||
jsfiddle | ||
jsonschema | ||
katex | ||
khroma | ||
langium | ||
mathml | ||
matplotlib | ||
mdbook | ||
Mermerd | ||
mkdocs | ||
Nextra | ||
nodenext | ||
npmjs | ||
pageview | ||
pathe | ||
phpbb | ||
pixelmatch | ||
Podlite | ||
presetAttributify | ||
pyplot | ||
redmine | ||
rehype | ||
rscratch | ||
sparkline | ||
sphinxcontrib | ||
ssim | ||
stylis | ||
Swimm | ||
tsbuildinfo | ||
Tuleap | ||
Typora | ||
unocss | ||
unplugin | ||
unstub | ||
vite | ||
vitest | ||
Zune |
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,39 @@ | ||
Adamiecki | ||
arrowend | ||
bmatrix | ||
braintree | ||
catmull | ||
compositTitleSize | ||
doublecircle | ||
elems | ||
gantt | ||
gitgraph | ||
gzipped | ||
knsv | ||
Knut | ||
marginx | ||
marginy | ||
Markdownish | ||
mermaidjs | ||
mindmap | ||
mindmaps | ||
multigraph | ||
nodesep | ||
NOTEGROUP | ||
rankdir | ||
ranksep | ||
rect | ||
rects | ||
sandboxed | ||
siebling | ||
statediagram | ||
substate | ||
Sveidqvist | ||
unfixable | ||
Viewbox | ||
viewports | ||
visio | ||
vitepress | ||
xlink | ||
xychart |
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 @@ | ||
newbranch |
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
v20.11.0 | ||
v20.11.1 |
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
Oops, something went wrong.