@enjoys/context-engine 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/data/commands/linux.json +826 -21
  2. package/data/commands/manifest.json +3 -1
  3. package/data/completion/awk.json +203 -0
  4. package/data/completion/crontab.json +203 -0
  5. package/data/completion/dotenv.json +170 -0
  6. package/data/completion/go.json +9464 -773
  7. package/data/completion/graphql.json +181 -0
  8. package/data/completion/hcl.json +192 -0
  9. package/data/completion/ini.json +137 -0
  10. package/data/completion/json.json +170 -0
  11. package/data/completion/makefile.json +203 -0
  12. package/data/completion/markdown.json +225 -0
  13. package/data/completion/nginx.json +280 -0
  14. package/data/completion/perl.json +203 -0
  15. package/data/completion/powershell.json +225 -0
  16. package/data/completion/protobuf.json +181 -0
  17. package/data/completion/ssh_config.json +159 -0
  18. package/data/completion/systemd.json +170 -0
  19. package/data/completion/xml.json +159 -0
  20. package/data/completion/zsh.json +214 -0
  21. package/data/defination/awk.json +125 -0
  22. package/data/defination/crontab.json +107 -0
  23. package/data/defination/dotenv.json +71 -0
  24. package/data/defination/go.json +14555 -380
  25. package/data/defination/graphql.json +119 -0
  26. package/data/defination/hcl.json +125 -0
  27. package/data/defination/ini.json +77 -0
  28. package/data/defination/json.json +83 -0
  29. package/data/defination/makefile.json +113 -0
  30. package/data/defination/markdown.json +107 -0
  31. package/data/defination/nginx.json +131 -0
  32. package/data/defination/perl.json +101 -0
  33. package/data/defination/powershell.json +119 -0
  34. package/data/defination/protobuf.json +119 -0
  35. package/data/defination/ssh_config.json +89 -0
  36. package/data/defination/systemd.json +107 -0
  37. package/data/defination/xml.json +83 -0
  38. package/data/defination/zsh.json +113 -0
  39. package/data/hover/awk.json +47 -0
  40. package/data/hover/crontab.json +47 -0
  41. package/data/hover/dotenv.json +47 -0
  42. package/data/hover/go.json +4324 -202
  43. package/data/hover/graphql.json +47 -0
  44. package/data/hover/hcl.json +75 -0
  45. package/data/hover/ini.json +68 -0
  46. package/data/hover/json.json +89 -0
  47. package/data/hover/makefile.json +68 -0
  48. package/data/hover/markdown.json +68 -0
  49. package/data/hover/nginx.json +89 -0
  50. package/data/hover/perl.json +47 -0
  51. package/data/hover/powershell.json +54 -0
  52. package/data/hover/protobuf.json +47 -0
  53. package/data/hover/ssh_config.json +47 -0
  54. package/data/hover/systemd.json +54 -0
  55. package/data/hover/xml.json +61 -0
  56. package/data/hover/zsh.json +61 -0
  57. package/data/manifest.json +210 -6
  58. package/package.json +1 -1
@@ -0,0 +1,119 @@
1
+ {
2
+ "language": "graphql",
3
+ "definitions": {
4
+ "type": {
5
+ "signature": "type Name { field: Type }",
6
+ "description": "Object type defining a set of fields. Each field has a type and optional arguments.",
7
+ "type": "keyword",
8
+ "module": "GraphQL"
9
+ },
10
+ "input": {
11
+ "signature": "input Name { field: Type }",
12
+ "description": "Input types for mutations and queries. Like types but used as arguments.",
13
+ "type": "keyword",
14
+ "module": "GraphQL"
15
+ },
16
+ "enum": {
17
+ "signature": "enum Name { VALUE1 VALUE2 }",
18
+ "description": "Enumeration type restricting values to a defined set.",
19
+ "type": "keyword",
20
+ "module": "GraphQL"
21
+ },
22
+ "interface": {
23
+ "signature": "interface Name { field: Type }",
24
+ "description": "Abstract type defining fields that implementing types must include.",
25
+ "type": "keyword",
26
+ "module": "GraphQL"
27
+ },
28
+ "union": {
29
+ "signature": "union Name = Type1 | Type2",
30
+ "description": "Union of multiple object types. Use inline fragments to query specific types.",
31
+ "type": "keyword",
32
+ "module": "GraphQL"
33
+ },
34
+ "scalar": {
35
+ "signature": "scalar Name",
36
+ "description": "Custom scalar type beyond built-in ID, String, Int, Float, Boolean.",
37
+ "type": "keyword",
38
+ "module": "GraphQL"
39
+ },
40
+ "schema": {
41
+ "signature": "schema { query: Q mutation: M }",
42
+ "description": "Root schema definition mapping operation types to root types.",
43
+ "type": "keyword",
44
+ "module": "GraphQL"
45
+ },
46
+ "directive": {
47
+ "signature": "directive @name on LOCATION",
48
+ "description": "Metadata attached to types or fields. Built-in: @deprecated, @skip, @include.",
49
+ "type": "keyword",
50
+ "module": "GraphQL"
51
+ },
52
+ "query": {
53
+ "signature": "query Name($var: Type) { ... }",
54
+ "description": "Read operation. Fetches data without side effects.",
55
+ "type": "operation",
56
+ "module": "GraphQL"
57
+ },
58
+ "mutation": {
59
+ "signature": "mutation Name($var: Type) { ... }",
60
+ "description": "Write operation. Modifies data on the server.",
61
+ "type": "operation",
62
+ "module": "GraphQL"
63
+ },
64
+ "subscription": {
65
+ "signature": "subscription Name { ... }",
66
+ "description": "Real-time operation. Maintains a persistent connection for live updates.",
67
+ "type": "operation",
68
+ "module": "GraphQL"
69
+ },
70
+ "fragment": {
71
+ "signature": "fragment Name on Type { ... }",
72
+ "description": "Reusable set of fields. Spread with ...FragmentName.",
73
+ "type": "keyword",
74
+ "module": "GraphQL"
75
+ },
76
+ "ID": {
77
+ "signature": "ID",
78
+ "description": "Built-in scalar representing a unique identifier. Serialized as String.",
79
+ "type": "scalar",
80
+ "module": "GraphQL"
81
+ },
82
+ "String": {
83
+ "signature": "String",
84
+ "description": "Built-in scalar for UTF-8 text strings.",
85
+ "type": "scalar",
86
+ "module": "GraphQL"
87
+ },
88
+ "Int": {
89
+ "signature": "Int",
90
+ "description": "Built-in scalar for 32-bit signed integers.",
91
+ "type": "scalar",
92
+ "module": "GraphQL"
93
+ },
94
+ "Float": {
95
+ "signature": "Float",
96
+ "description": "Built-in scalar for double-precision floating-point numbers.",
97
+ "type": "scalar",
98
+ "module": "GraphQL"
99
+ },
100
+ "Boolean": {
101
+ "signature": "Boolean",
102
+ "description": "Built-in scalar for true/false values.",
103
+ "type": "scalar",
104
+ "module": "GraphQL"
105
+ },
106
+ "non_null": {
107
+ "signature": "Type!",
108
+ "description": "Non-null modifier. The field will never return null.",
109
+ "type": "modifier",
110
+ "module": "GraphQL"
111
+ },
112
+ "list": {
113
+ "signature": "[Type]",
114
+ "description": "List modifier. The field returns an array of the specified type.",
115
+ "type": "modifier",
116
+ "module": "GraphQL"
117
+ }
118
+ }
119
+ }
@@ -0,0 +1,125 @@
1
+ {
2
+ "language": "hcl",
3
+ "definitions": {
4
+ "resource": {
5
+ "signature": "resource \"type\" \"name\" { ... }",
6
+ "description": "Resources are the most important element. Each resource block describes one or more infrastructure objects.",
7
+ "type": "block",
8
+ "module": "Terraform Core"
9
+ },
10
+ "data": {
11
+ "signature": "data \"type\" \"name\" { ... }",
12
+ "description": "Data sources allow Terraform to use information defined outside of Terraform or by another configuration.",
13
+ "type": "block",
14
+ "module": "Terraform Core"
15
+ },
16
+ "variable": {
17
+ "signature": "variable \"name\" { ... }",
18
+ "description": "Input variables serve as parameters for a Terraform module. Can have type, default, description, validation.",
19
+ "type": "block",
20
+ "module": "Terraform Core"
21
+ },
22
+ "output": {
23
+ "signature": "output \"name\" { value = ... }",
24
+ "description": "Output values are the return values of a Terraform module.",
25
+ "type": "block",
26
+ "module": "Terraform Core"
27
+ },
28
+ "provider": {
29
+ "signature": "provider \"name\" { ... }",
30
+ "description": "Provider configurations specify which provider plugin to use and supply its connection details.",
31
+ "type": "block",
32
+ "module": "Terraform Core"
33
+ },
34
+ "module": {
35
+ "signature": "module \"name\" { source = \"...\" }",
36
+ "description": "A module call references a reusable set of Terraform configurations.",
37
+ "type": "block",
38
+ "module": "Terraform Core"
39
+ },
40
+ "locals": {
41
+ "signature": "locals { name = value }",
42
+ "description": "Local values assign a name to an expression for reuse within a module.",
43
+ "type": "block",
44
+ "module": "Terraform Core"
45
+ },
46
+ "terraform": {
47
+ "signature": "terraform { ... }",
48
+ "description": "Terraform settings block configures required_version, required_providers, and backend.",
49
+ "type": "block",
50
+ "module": "Terraform Core"
51
+ },
52
+ "for_each": {
53
+ "signature": "for_each = var.map",
54
+ "description": "Meta-argument that creates an instance for each item in a map or set of strings.",
55
+ "type": "meta-argument",
56
+ "module": "Terraform Core"
57
+ },
58
+ "count": {
59
+ "signature": "count = number",
60
+ "description": "Meta-argument that creates a specific number of instances of a resource.",
61
+ "type": "meta-argument",
62
+ "module": "Terraform Core"
63
+ },
64
+ "depends_on": {
65
+ "signature": "depends_on = [resource.name]",
66
+ "description": "Explicitly specify dependencies between resources that Terraform cannot automatically detect.",
67
+ "type": "meta-argument",
68
+ "module": "Terraform Core"
69
+ },
70
+ "lifecycle": {
71
+ "signature": "lifecycle { create_before_destroy = true }",
72
+ "description": "Lifecycle block customizes how resources are created, updated, and destroyed.",
73
+ "type": "block",
74
+ "module": "Terraform Core"
75
+ },
76
+ "provisioner": {
77
+ "signature": "provisioner \"type\" { ... }",
78
+ "description": "Provisioners execute scripts on local or remote machines as part of resource creation or destruction.",
79
+ "type": "block",
80
+ "module": "Terraform Core"
81
+ },
82
+ "dynamic": {
83
+ "signature": "dynamic \"name\" { for_each = ... content { ... } }",
84
+ "description": "Dynamic blocks generate repeated nested blocks from a collection.",
85
+ "type": "block",
86
+ "module": "Terraform Core"
87
+ },
88
+ "backend": {
89
+ "signature": "backend \"type\" { ... }",
90
+ "description": "Backends determine where Terraform stores its state. Options: s3, gcs, azurerm, consul, local.",
91
+ "type": "block",
92
+ "module": "Terraform Core"
93
+ },
94
+ "string": {
95
+ "signature": "\"string value\"",
96
+ "description": "Strings are sequences of Unicode characters. Support interpolation with ${...} and directive syntax.",
97
+ "type": "type",
98
+ "module": "HCL"
99
+ },
100
+ "number": {
101
+ "signature": "42 | 3.14",
102
+ "description": "Numbers can be integers or floating-point values.",
103
+ "type": "type",
104
+ "module": "HCL"
105
+ },
106
+ "bool": {
107
+ "signature": "true | false",
108
+ "description": "Boolean values representing true or false.",
109
+ "type": "type",
110
+ "module": "HCL"
111
+ },
112
+ "list": {
113
+ "signature": "[val1, val2, ...]",
114
+ "description": "List/tuple type - an ordered sequence of values.",
115
+ "type": "type",
116
+ "module": "HCL"
117
+ },
118
+ "map": {
119
+ "signature": "{ key = value, ... }",
120
+ "description": "Map/object type - a collection of key-value pairs.",
121
+ "type": "type",
122
+ "module": "HCL"
123
+ }
124
+ }
125
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "language": "ini",
3
+ "definitions": {
4
+ "section": {
5
+ "signature": "[section_name]",
6
+ "description": "A section header groups related key-value pairs. Section names are enclosed in square brackets.",
7
+ "type": "structure",
8
+ "module": "INI format"
9
+ },
10
+ "key_value": {
11
+ "signature": "key = value",
12
+ "description": "A key-value pair assigns a value to a named key. The delimiter can be = or : depending on the parser.",
13
+ "type": "syntax",
14
+ "module": "INI format"
15
+ },
16
+ "comment_semicolon": {
17
+ "signature": "; comment text",
18
+ "description": "A comment preceded by a semicolon. The entire line is ignored by the parser.",
19
+ "type": "syntax",
20
+ "module": "INI format"
21
+ },
22
+ "comment_hash": {
23
+ "signature": "# comment text",
24
+ "description": "A comment preceded by a hash sign. Supported by most INI parsers.",
25
+ "type": "syntax",
26
+ "module": "INI format"
27
+ },
28
+ "DEFAULT": {
29
+ "signature": "[DEFAULT]",
30
+ "description": "Special section that provides default values inherited by all other sections (Python ConfigParser).",
31
+ "type": "keyword",
32
+ "module": "ConfigParser"
33
+ },
34
+ "interpolation": {
35
+ "signature": "%(name)s",
36
+ "description": "Variable interpolation that substitutes the value of another key. Python ConfigParser uses %(name)s syntax.",
37
+ "type": "syntax",
38
+ "module": "ConfigParser"
39
+ },
40
+ "multiline": {
41
+ "signature": "key = line1\\n line2",
42
+ "description": "Values can span multiple lines if continuation lines are indented with whitespace.",
43
+ "type": "syntax",
44
+ "module": "INI format"
45
+ },
46
+ "my.cnf": {
47
+ "signature": "MySQL configuration file",
48
+ "description": "MySQL/MariaDB server configuration file using INI format. Common sections: [mysqld], [client], [mysql].",
49
+ "type": "file",
50
+ "module": "MySQL"
51
+ },
52
+ "php.ini": {
53
+ "signature": "PHP configuration file",
54
+ "description": "PHP runtime configuration file. Controls memory limits, upload sizes, error reporting, extensions.",
55
+ "type": "file",
56
+ "module": "PHP"
57
+ },
58
+ "supervisord.conf": {
59
+ "signature": "Supervisor config",
60
+ "description": "Process manager configuration file. Defines programs to monitor, restart policies, and logging.",
61
+ "type": "file",
62
+ "module": "Supervisor"
63
+ },
64
+ "uwsgi.ini": {
65
+ "signature": "uWSGI config",
66
+ "description": "uWSGI application server configuration. Defines WSGI module, workers, sockets, and process management.",
67
+ "type": "file",
68
+ "module": "uWSGI"
69
+ },
70
+ "gitconfig": {
71
+ "signature": "~/.gitconfig",
72
+ "description": "Git user configuration file using INI format. Sections include [user], [core], [alias], [remote].",
73
+ "type": "file",
74
+ "module": "Git"
75
+ }
76
+ }
77
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "language": "json",
3
+ "definitions": {
4
+ "object": {
5
+ "signature": "{ }",
6
+ "description": "An unordered collection of key-value pairs enclosed in curly braces. Keys must be double-quoted strings.",
7
+ "type": "structure",
8
+ "module": "JSON RFC 8259"
9
+ },
10
+ "array": {
11
+ "signature": "[ ]",
12
+ "description": "An ordered sequence of values enclosed in square brackets, separated by commas.",
13
+ "type": "structure",
14
+ "module": "JSON RFC 8259"
15
+ },
16
+ "string": {
17
+ "signature": "\"...\"",
18
+ "description": "A sequence of Unicode characters enclosed in double quotes. Supports escape sequences like \\n, \\t, \\u0000.",
19
+ "type": "data_type",
20
+ "module": "JSON RFC 8259"
21
+ },
22
+ "number": {
23
+ "signature": "42 | 3.14 | 1e10",
24
+ "description": "A numeric value - integer or floating point. No leading zeros, no hex/octal. Supports scientific notation.",
25
+ "type": "data_type",
26
+ "module": "JSON RFC 8259"
27
+ },
28
+ "boolean": {
29
+ "signature": "true | false",
30
+ "description": "A boolean literal, either true or false (lowercase only).",
31
+ "type": "data_type",
32
+ "module": "JSON RFC 8259"
33
+ },
34
+ "null": {
35
+ "signature": "null",
36
+ "description": "Represents the absence of a value. Must be lowercase.",
37
+ "type": "data_type",
38
+ "module": "JSON RFC 8259"
39
+ },
40
+ "key": {
41
+ "signature": "\"key\": value",
42
+ "description": "Object keys must be double-quoted strings. Each key in an object should be unique.",
43
+ "type": "syntax",
44
+ "module": "JSON RFC 8259"
45
+ },
46
+ "escape_sequences": {
47
+ "signature": "\\\" \\\\ \\/ \\b \\f \\n \\r \\t \\uXXXX",
48
+ "description": "Special characters in strings are represented with backslash escape sequences.",
49
+ "type": "syntax",
50
+ "module": "JSON RFC 8259"
51
+ },
52
+ "json_schema": {
53
+ "signature": "$schema",
54
+ "description": "JSON Schema is a vocabulary for annotating and validating JSON documents. The $schema keyword declares which version of the JSON Schema spec the document uses.",
55
+ "type": "standard",
56
+ "module": "JSON Schema"
57
+ },
58
+ "json_pointer": {
59
+ "signature": "/path/to/value",
60
+ "description": "JSON Pointer (RFC 6901) is a syntax for identifying a specific value within a JSON document using a path of property names and array indices.",
61
+ "type": "standard",
62
+ "module": "RFC 6901"
63
+ },
64
+ "mime_type": {
65
+ "signature": "application/json",
66
+ "description": "The official MIME type for JSON is application/json. The file extension is .json.",
67
+ "type": "metadata",
68
+ "module": "RFC 8259"
69
+ },
70
+ "trailing_comma": {
71
+ "signature": "{ \"a\": 1, } // INVALID",
72
+ "description": "Trailing commas are NOT allowed in standard JSON. This is a common error when editing JSON files.",
73
+ "type": "syntax",
74
+ "module": "JSON RFC 8259"
75
+ },
76
+ "comments": {
77
+ "signature": "// or /* */ - NOT SUPPORTED",
78
+ "description": "Standard JSON does not support comments. Some tools (JSONC, JSON5) extend JSON to allow them. Use _comment keys as a workaround.",
79
+ "type": "syntax",
80
+ "module": "JSON RFC 8259"
81
+ }
82
+ }
83
+ }
@@ -0,0 +1,113 @@
1
+ {
2
+ "language": "makefile",
3
+ "definitions": {
4
+ "target": {
5
+ "signature": "target: prerequisites\\n\\trecipe",
6
+ "description": "A target is a rule that defines what to build, its dependencies, and how to build it.",
7
+ "type": "syntax",
8
+ "module": "GNU Make"
9
+ },
10
+ "phony": {
11
+ "signature": ".PHONY: target",
12
+ "description": "Declares targets that don't represent files. Prevents conflicts with files of the same name.",
13
+ "type": "directive",
14
+ "module": "GNU Make"
15
+ },
16
+ "variable_simple": {
17
+ "signature": "VAR := value",
18
+ "description": "Simple expansion variable. Value is expanded at the time of assignment.",
19
+ "type": "syntax",
20
+ "module": "GNU Make"
21
+ },
22
+ "variable_recursive": {
23
+ "signature": "VAR = value",
24
+ "description": "Recursive expansion variable. Value is expanded each time the variable is referenced.",
25
+ "type": "syntax",
26
+ "module": "GNU Make"
27
+ },
28
+ "variable_conditional": {
29
+ "signature": "VAR ?= value",
30
+ "description": "Conditional assignment. Only sets the variable if it is not already defined.",
31
+ "type": "syntax",
32
+ "module": "GNU Make"
33
+ },
34
+ "variable_append": {
35
+ "signature": "VAR += value",
36
+ "description": "Append to an existing variable's value.",
37
+ "type": "syntax",
38
+ "module": "GNU Make"
39
+ },
40
+ "automatic_at": {
41
+ "signature": "$@",
42
+ "description": "Automatic variable: the file name of the target of the rule.",
43
+ "type": "variable",
44
+ "module": "GNU Make"
45
+ },
46
+ "automatic_less": {
47
+ "signature": "$<",
48
+ "description": "Automatic variable: the name of the first prerequisite.",
49
+ "type": "variable",
50
+ "module": "GNU Make"
51
+ },
52
+ "automatic_caret": {
53
+ "signature": "$^",
54
+ "description": "Automatic variable: the names of all prerequisites, with spaces between them.",
55
+ "type": "variable",
56
+ "module": "GNU Make"
57
+ },
58
+ "automatic_star": {
59
+ "signature": "$*",
60
+ "description": "Automatic variable: the stem with which an implicit rule matches.",
61
+ "type": "variable",
62
+ "module": "GNU Make"
63
+ },
64
+ "shell": {
65
+ "signature": "$(shell command)",
66
+ "description": "Execute a shell command and return its output as the function's value.",
67
+ "type": "function",
68
+ "module": "GNU Make"
69
+ },
70
+ "wildcard": {
71
+ "signature": "$(wildcard pattern)",
72
+ "description": "Expands to a list of existing files matching the pattern.",
73
+ "type": "function",
74
+ "module": "GNU Make"
75
+ },
76
+ "patsubst": {
77
+ "signature": "$(patsubst pattern,replacement,text)",
78
+ "description": "Pattern substitution - replace words matching pattern with replacement.",
79
+ "type": "function",
80
+ "module": "GNU Make"
81
+ },
82
+ "include": {
83
+ "signature": "include filename",
84
+ "description": "Include another Makefile. Make will suspend reading the current Makefile and process the included one.",
85
+ "type": "directive",
86
+ "module": "GNU Make"
87
+ },
88
+ "ifeq": {
89
+ "signature": "ifeq (a,b) ... endif",
90
+ "description": "Conditional directive - evaluate the enclosed text only if the two arguments are equal.",
91
+ "type": "directive",
92
+ "module": "GNU Make"
93
+ },
94
+ "pattern_rule": {
95
+ "signature": "%.o: %.c",
96
+ "description": "Pattern rules use % as a wildcard to define implicit rules for building files.",
97
+ "type": "syntax",
98
+ "module": "GNU Make"
99
+ },
100
+ "recipe_prefix": {
101
+ "signature": "\\t(TAB character)",
102
+ "description": "Recipe lines MUST start with a TAB character, not spaces. This is a common source of errors.",
103
+ "type": "syntax",
104
+ "module": "GNU Make"
105
+ },
106
+ "silent": {
107
+ "signature": "@command",
108
+ "description": "Prefix a recipe line with @ to suppress echoing the command itself.",
109
+ "type": "syntax",
110
+ "module": "GNU Make"
111
+ }
112
+ }
113
+ }
@@ -0,0 +1,107 @@
1
+ {
2
+ "language": "markdown",
3
+ "definitions": {
4
+ "heading": {
5
+ "signature": "# Heading (1-6 levels)",
6
+ "description": "Headings use 1-6 hash symbols. # is H1 (largest), ###### is H6 (smallest).",
7
+ "type": "syntax",
8
+ "module": "CommonMark"
9
+ },
10
+ "paragraph": {
11
+ "signature": "text block",
12
+ "description": "A paragraph is one or more consecutive lines of text, separated by blank lines.",
13
+ "type": "syntax",
14
+ "module": "CommonMark"
15
+ },
16
+ "emphasis": {
17
+ "signature": "*italic* **bold** ***both***",
18
+ "description": "Single asterisks or underscores for italic, double for bold, triple for both.",
19
+ "type": "syntax",
20
+ "module": "CommonMark"
21
+ },
22
+ "link": {
23
+ "signature": "[text](url \"title\")",
24
+ "description": "Inline links contain the URL in parentheses. Optional title in quotes.",
25
+ "type": "syntax",
26
+ "module": "CommonMark"
27
+ },
28
+ "image": {
29
+ "signature": "![alt](url \"title\")",
30
+ "description": "Images use the same syntax as links but prefixed with !.",
31
+ "type": "syntax",
32
+ "module": "CommonMark"
33
+ },
34
+ "code_inline": {
35
+ "signature": "`code`",
36
+ "description": "Inline code is wrapped in backticks. Use double backticks to include literal backticks.",
37
+ "type": "syntax",
38
+ "module": "CommonMark"
39
+ },
40
+ "code_block": {
41
+ "signature": "```lang\\ncode\\n```",
42
+ "description": "Fenced code blocks use triple backticks with optional language identifier for syntax highlighting.",
43
+ "type": "syntax",
44
+ "module": "CommonMark"
45
+ },
46
+ "list_unordered": {
47
+ "signature": "- item or * item",
48
+ "description": "Unordered lists use -, *, or + as markers. Nested lists indent by 2-4 spaces.",
49
+ "type": "syntax",
50
+ "module": "CommonMark"
51
+ },
52
+ "list_ordered": {
53
+ "signature": "1. item",
54
+ "description": "Ordered lists use numbers followed by a period. The actual numbers don't matter for rendering.",
55
+ "type": "syntax",
56
+ "module": "CommonMark"
57
+ },
58
+ "blockquote": {
59
+ "signature": "> quoted text",
60
+ "description": "Blockquotes prefix lines with >. Can be nested with multiple > characters.",
61
+ "type": "syntax",
62
+ "module": "CommonMark"
63
+ },
64
+ "horizontal_rule": {
65
+ "signature": "--- or *** or ___",
66
+ "description": "Three or more hyphens, asterisks, or underscores on a line create a horizontal rule.",
67
+ "type": "syntax",
68
+ "module": "CommonMark"
69
+ },
70
+ "table": {
71
+ "signature": "| H1 | H2 |\\n|---|---|\\n| cell | cell |",
72
+ "description": "Tables use pipes and hyphens. Alignment: :--- (left), :---: (center), ---: (right).",
73
+ "type": "syntax",
74
+ "module": "GFM"
75
+ },
76
+ "task_list": {
77
+ "signature": "- [ ] task or - [x] done",
78
+ "description": "Task lists use - [ ] for unchecked and - [x] for checked items (GitHub Flavored Markdown).",
79
+ "type": "syntax",
80
+ "module": "GFM"
81
+ },
82
+ "strikethrough": {
83
+ "signature": "~~text~~",
84
+ "description": "Strikethrough text is wrapped in double tildes (GitHub Flavored Markdown).",
85
+ "type": "syntax",
86
+ "module": "GFM"
87
+ },
88
+ "footnote": {
89
+ "signature": "[^id] and [^id]: text",
90
+ "description": "Footnotes use [^id] for reference and [^id]: for the definition.",
91
+ "type": "syntax",
92
+ "module": "Extended"
93
+ },
94
+ "frontmatter": {
95
+ "signature": "---\\nyaml\\n---",
96
+ "description": "YAML frontmatter between --- delimiters provides metadata (title, date, tags) for static site generators.",
97
+ "type": "syntax",
98
+ "module": "Extended"
99
+ },
100
+ "html": {
101
+ "signature": "<tag>content</tag>",
102
+ "description": "Raw HTML can be embedded in Markdown. Block-level HTML must be separated by blank lines.",
103
+ "type": "syntax",
104
+ "module": "CommonMark"
105
+ }
106
+ }
107
+ }