Skip to content

Commit fddeb46

Browse files
authored
Fix bodgered markdown code tags (continuedev#979)
1 parent 9de7f24 commit fddeb46

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/docs/customization/context-providers.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To use any of the built-in context providers, open `~/.continue/config.json` and
2020

2121
Type '@code' to reference specific functions or classes from throughout your project.
2222

23-
`````json
23+
```json
2424
{ "name": "code" }
2525
```
2626

@@ -141,19 +141,20 @@ This context provider supports both Jira API version 2 and 3. It will use versio
141141
that's what the cloud version uses, but if you have the datacenter version of Jira, you'll need
142142
to set the API Version to 2 using the `apiVersion` property.
143143

144-
````json
144+
```json
145145
"params": {
146146
"apiVersion": "2",
147147
...
148148
}
149+
```
149150

150151
#### Issue Query
151152

152153
By default, the following query will be used to find issues:
153154

154155
```jql
155156
assignee = currentUser() AND resolution = Unresolved order by updated DESC
156-
`````
157+
```
157158

158159
You can override this query by setting the `issueQuery` parameter.
159160

0 commit comments

Comments
 (0)