mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-21 09:38:01 +02:00
3a57cfea02
- Commands "enabled" state is now expressed using a "when-clause" like in VSCode - A command palette has been added to the Tools menu
33 lines
626 B
TypeScript
33 lines
626 B
TypeScript
import markdownUtils, { MarkdownTableHeader, MarkdownTableRow } from 'lib/markdownUtils';
|
|
|
|
export default function commandsToMarkdownTable():string {
|
|
const headers:MarkdownTableHeader[] = [
|
|
{
|
|
name: 'commandName',
|
|
label: 'Name',
|
|
},
|
|
{
|
|
name: 'description',
|
|
label: 'Description',
|
|
},
|
|
{
|
|
name: 'props',
|
|
label: 'Props',
|
|
},
|
|
];
|
|
|
|
const rows:MarkdownTableRow[] = [];
|
|
|
|
for (const commandName in this.commands_) {
|
|
|
|
const row:MarkdownTableRow = {
|
|
commandName: commandName,
|
|
description: this.label(commandName),
|
|
};
|
|
|
|
rows.push(row);
|
|
}
|
|
|
|
return markdownUtils.createMarkdownTable(headers, rows);
|
|
}
|