Skip to content

Commit 31d4070

Browse files
committed
Add support for quarto documents
1 parent 151102f commit 31d4070

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [0.9.3] - 2022-05-14
4+
5+
- Added support for citations in quarto[https://marketplace.visualstudio.com/items?itemName=quarto.quarto] documents
6+
37
## [0.9.2] - 2021-12-15
48

59
- Hovering and go-to support ( #29 - thanks to @Dominic-DallOsto )

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pandocciter",
33
"displayName": "Pandoc Citer",
44
"description": "Autocomplete bibtex citations for markdown/pandoc",
5-
"version": "0.9.2",
5+
"version": "0.9.3",
66
"publisher": "notZaki",
77
"license": "MIT",
88
"engines": {
@@ -23,7 +23,8 @@
2323
"activationEvents": [
2424
"onLanguage:markdown",
2525
"onLanguage:rmd",
26-
"onLanguage:pweave_md"
26+
"onLanguage:pweave_md",
27+
"onLanguage:quarto"
2728
],
2829
"main": "./out/extension",
2930
"contributes": {

src/extension.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function activate(context: vscode.ExtensionContext) {
3232
}
3333
}));
3434

35-
const selector = ['markdown','rmd','pweave_md'].map((language)=>{
35+
const selector = ['markdown','rmd','pweave_md','quarto'].map((language)=>{
3636
return {scheme: 'file', language: language};
3737
});
3838

0 commit comments

Comments
 (0)