mermaid/cSpell.json

98 lines
1.9 KiB
JSON
Raw Normal View History

2022-10-07 20:50:23 -04:00
{
"version": "0.2",
"language": "en",
"words": [
2022-10-07 21:34:40 -04:00
"customizability",
"Gantt",
"jison",
"knsv",
"Knut",
"mindmap",
"Mindmaps",
"mitigations",
"sandboxed",
"Sveidqvist",
"verdana",
"Visio"
],
"ignoreWords": [
"Adamiecki",
2022-10-07 21:17:56 -04:00
"applitools",
2022-10-07 21:23:22 -04:00
"Asciidoctor",
2022-10-07 21:24:00 -04:00
"Astah",
2022-10-07 21:21:14 -04:00
"Bisheng",
2022-10-07 21:23:22 -04:00
"codedoc",
"Docsy",
2022-10-07 21:25:50 -04:00
"Doku",
2022-10-07 21:25:20 -04:00
"Gitea",
2022-10-07 21:09:28 -04:00
"Gitgraph",
2022-10-07 21:25:50 -04:00
"Grav",
2022-10-07 21:24:00 -04:00
"Inkdrop",
2022-10-07 21:05:50 -04:00
"Jaoude",
2022-10-07 21:34:40 -04:00
"mdbook",
2022-10-07 21:24:00 -04:00
"mermerd",
2022-10-07 21:23:22 -04:00
"mkdocs",
2022-10-07 21:25:50 -04:00
"phpbb",
2022-10-07 21:09:28 -04:00
"Plantuml",
2022-10-07 21:20:14 -04:00
"Playfair's",
2022-10-07 21:23:22 -04:00
"Podlite",
2022-10-07 21:10:50 -04:00
"redmine",
2022-10-07 21:23:22 -04:00
"sphinxcontrib",
2022-10-07 21:34:40 -04:00
"Tuleap"
],
2022-10-07 20:50:23 -04:00
"patterns": [
{
"name": "Markdown links",
"pattern": "\\((.*)\\)",
"description": ""
},
{
"name": "Markdown code blocks",
"pattern": "/^(\\s*`{3,}).*[\\s\\S]*?^\\1/gmx",
"description": "Taken from the cSpell example at https://cspell.org/configuration/patterns/#verbose-regular-expressions"
},
{
"name": "Inline code blocks",
"pattern": "\\`([^\\`\\r\\n]+?)\\`",
"description": "https://stackoverflow.com/questions/41274241/how-to-capture-inline-markdown-code-but-not-a-markdown-code-fence-with-regex"
},
{
"name": "Link contents",
"pattern": "\\<a(.*)\\>",
"description": ""
},
{
"name": "Snippet references",
"pattern": "-- snippet:(.*)",
"description": ""
},
{
"name": "Snippet references 2",
"pattern": "\\<\\[sample:(.*)",
"description": "another kind of snippet reference"
},
{
"name": "Multi-line code blocks",
"pattern": "/^\\s*```[\\s\\S]*?^\\s*```/gm"
},
{
"name": "HTML Tags",
"pattern": "<[^>]*>",
"description": "Reference: https://stackoverflow.com/questions/11229831/regular-expression-to-remove-html-tags-from-a-string"
}
],
"ignoreRegExpList": [
"Markdown links",
"Markdown code blocks",
"Inline code blocks",
"Link contents",
"Snippet references",
"Snippet references 2",
"Multi-line code blocks",
"HTML Tags"
],
2022-10-07 21:31:00 -04:00
"ignorePaths": [
"packages/mermaid/src/docs/CHANGELOG.md"
]
2022-10-07 20:50:23 -04:00
}