From 428e975fee85f2f0c9aa626018cbd20345ab5b1b Mon Sep 17 00:00:00 2001 From: Anis Tigrini Date: Tue, 16 Aug 2022 22:19:56 -0400 Subject: [PATCH] fixed MIT license rendering on website --- docs/api/index.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/api/index.md b/docs/api/index.md index f3632616a..1b1bc381a 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -10,7 +10,7 @@ custom_edit_url: null NPM version NPM downloads -[![License: MIT](https://img.shields.io/badge/License-MIT-blavk.svg)](https://opensource.org/licenses/MIT) +NPM downloads A customizable, batteries-included, powerful discord.js framework to automate and streamline your bot development. @@ -33,22 +33,22 @@ pnpm add @sern/handler #### ` index.js (CommonJS)` ```js -const { Client, GatewayIntentBits } = require('discord.js'); -const { Sern } = require('@sern/handler'); -const { defaultPrefix, token } = require('./config.json'); +const { Client, GatewayIntentBits } = require("discord.js"); +const { Sern } = require("@sern/handler"); +const { defaultPrefix, token } = require("./config.json"); const client = new Client({ intents: [ GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, - GatewayIntentBits.GuildMessages - ] + GatewayIntentBits.GuildMessages, + ], }); Sern.init({ - client, - defaultPrefix, - commands : 'src/commands', + client, + defaultPrefix, + commands: "src/commands", }); client.login(token); @@ -57,15 +57,15 @@ client.login(token); #### ` ping.js (CommonJS)` ```js -const { Sern, CommandType } = require('@sern/handler'); +const { Sern, CommandType } = require("@sern/handler"); exports.default = { - description: 'A ping pong command', - type: CommandType.Slash, - execute(ctx) { - ctx.reply('pong!'); - } - }; + description: "A ping pong command", + type: CommandType.Slash, + execute(ctx) { + ctx.reply("pong!"); + }, +}; ``` See our [templates](https://github.com/sern-handler/templates) for TypeScript examples and more