Skip to content

Commit

Permalink
Add support for quarto documents
Browse files Browse the repository at this point in the history
  • Loading branch information
notZaki committed May 14, 2022
1 parent 151102f commit 31d4070
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [0.9.3] - 2022-05-14

- Added support for citations in quarto[https://marketplace.visualstudio.com/items?itemName=quarto.quarto] documents

## [0.9.2] - 2021-12-15

- Hovering and go-to support ( #29 - thanks to @Dominic-DallOsto )
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pandocciter",
"displayName": "Pandoc Citer",
"description": "Autocomplete bibtex citations for markdown/pandoc",
"version": "0.9.2",
"version": "0.9.3",
"publisher": "notZaki",
"license": "MIT",
"engines": {
Expand All @@ -23,7 +23,8 @@
"activationEvents": [
"onLanguage:markdown",
"onLanguage:rmd",
"onLanguage:pweave_md"
"onLanguage:pweave_md",
"onLanguage:quarto"
],
"main": "./out/extension",
"contributes": {
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function activate(context: vscode.ExtensionContext) {
}
}));

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

Expand Down

0 comments on commit 31d4070

Please sign in to comment.