Added tag commands descriptions
This commit is contained in:
parent
c357d3bc46
commit
3836ecb69b
5 changed files with 32 additions and 6 deletions
|
@ -44,7 +44,10 @@ body
|
|||
code &
|
||||
| .
|
||||
blockquote
|
||||
p Tip: Use Ctrl+F to find the command you want!
|
||||
p
|
||||
| Tip: You can get more info about a command by using
|
||||
code help [command]
|
||||
| .
|
||||
h2#table-of-contents Table of Contents
|
||||
ul
|
||||
li
|
||||
|
@ -74,6 +77,8 @@ body
|
|||
ul
|
||||
li!= command
|
||||
h2(id='tags') 🏷️ Tags
|
||||
blockquote
|
||||
p Every command in this category is a subcommand of the tag command.
|
||||
each command in commands.tags
|
||||
ul
|
||||
li!= command
|
||||
|
|
|
@ -50,7 +50,10 @@ exports.run = async (message, args) => {
|
|||
} else if (category === 2) {
|
||||
categories.moderation.push(`**${command}**${params ? ` ${params}` : ""} - ${description}`);
|
||||
} else if (category === 3) {
|
||||
categories.tags.push(`**${command}**${params ? ` ${params}` : ""} - ${description}`);
|
||||
const subCommands = Array.from(Object.keys(description));
|
||||
for (const subCommand of subCommands) {
|
||||
categories.tags.push(`**tags${subCommand !== "default" ? ` ${subCommand}` : ""}**${params[subCommand] ? ` ${params[subCommand]}` : ""} - ${description[subCommand]}`);
|
||||
}
|
||||
} else if (category === 4) {
|
||||
categories.fun.push(`**${command}**${params ? ` ${params}` : ""} - ${description}`);
|
||||
} else if (category === 5) {
|
||||
|
|
|
@ -19,3 +19,4 @@ exports.run = async (message, args) => {
|
|||
exports.aliases = ["hbc", "brew", "wiibrew"];
|
||||
exports.category = 4;
|
||||
exports.help = "Creates a Homebrew Channel edit";
|
||||
exports.params = "[text]";
|
|
@ -83,7 +83,20 @@ const setTag = async (content, name, message, guild) => {
|
|||
|
||||
exports.aliases = ["t", "tag", "ta"];
|
||||
exports.category = 3;
|
||||
exports.help = "placeholder";
|
||||
exports.help = {
|
||||
default: "Gets a tag",
|
||||
add: "Adds a tag",
|
||||
delete: "Deletes a tag",
|
||||
edit: "Edits a tag",
|
||||
list: "Lists all tags in the server",
|
||||
random: "Gets a random tag"
|
||||
};
|
||||
exports.params = {
|
||||
default: "[name]",
|
||||
add: "[name] [content]",
|
||||
delete: "[name]",
|
||||
edit: "[name] [content]"
|
||||
};
|
||||
|
||||
/*{
|
||||
default: "Gets a tag",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
const pug = require("pug");
|
||||
const collections = require("./collections.js");
|
||||
const logger = require("./logger.js");
|
||||
const fs = require("fs");
|
||||
|
||||
module.exports = async (output) => {
|
||||
|
@ -21,7 +22,10 @@ module.exports = async (output) => {
|
|||
} else if (category === 2) {
|
||||
categories.moderation.push(`<strong>${command}</strong>${params ? ` ${params}` : ""} - ${description}`);
|
||||
} else if (category === 3) {
|
||||
categories.tags.push(`<strong>${command}</strong>${params ? ` ${params}` : ""} - ${description}`);
|
||||
const subCommands = Array.from(Object.keys(description));
|
||||
for (const subCommand of subCommands) {
|
||||
categories.tags.push(`<strong>tags${subCommand !== "default" ? ` ${subCommand}` : ""}</strong>${params[subCommand] ? ` ${params[subCommand]}` : ""} - ${description[subCommand]}`);
|
||||
}
|
||||
} else if (category === 4) {
|
||||
categories.fun.push(`<strong>${command}</strong>${params ? ` ${params}` : ""} - ${description}`);
|
||||
} else if (category === 5) {
|
||||
|
@ -31,6 +35,6 @@ module.exports = async (output) => {
|
|||
}
|
||||
}
|
||||
fs.writeFile(output, pug.renderFile("./assets/pages/help.pug", { commands: categories }), () => {
|
||||
console.log("The docs have been generated.");
|
||||
logger.log("The help docs have been generated.");
|
||||
});
|
||||
};
|
Loading…
Reference in a new issue