We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
quarto list extension
formats
1 parent 5aef6f9 commit c6967f4Copy full SHA for c6967f4
src/command/list/cmd.ts
@@ -88,7 +88,8 @@ async function outputExtensions(
88
}
89
90
if (
91
- extension.contributes.formats
+ extension.contributes.formats &&
92
+ Object.keys(extension.contributes.formats).length > 0
93
) {
94
contribs.push("formats");
95
@@ -104,7 +105,7 @@ async function outputExtensions(
104
105
extensionEntries.push(row);
106
});
107
- const table = new Table().header(["Id", "Version", "Type"]).body(
108
+ const table = new Table().header(["Id", "Version", "Contributes"]).body(
109
extensionEntries,
110
).padding(4);
111
info(table.toString());
0 commit comments