Skip to content
This repository was archived by the owner on Jul 2, 2022. It is now read-only.

Commit 60ecbd7

Browse files
committed
feat: use tables
1 parent 466b8ea commit 60ecbd7

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

README.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@ Natico is designed to be a low level and extendable framework for [Discordeno](h
1010

1111
## Simple setup
1212

13-
### Normal natico
14-
15-
you will have to apply the plugins manually using the naticoclient.plugn() function
13+
<table>
14+
<tr>
15+
<th>Normal natico</th>
16+
<th>Using the natico plugin</th>
17+
</tr>
18+
<tr>
19+
<th>
1620

1721
```ts
1822
import { NaticoClient, NaticoClientOptions, NaticoCommandHandler } from "https://deno.land/x/natico/mod.ts";
@@ -36,7 +40,10 @@ const botClient = new BotClient({
3640
botClient.start();
3741
```
3842

39-
### Using plugins
43+
you will have to apply the plugins manually using the naticoclient.plugn() function
44+
45+
</th>
46+
<th>
4047

4148
```ts
4249
import { enableNaticoPlugin, NaticoBot, NaticoPluginOptions, withPlugins } from "../src/plugins/NaticoPlugin.ts";
@@ -70,6 +77,10 @@ async function startUp() {
7077
startUp();
7178
```
7279

80+
</th>
81+
</tr>
82+
</table>
83+
7384
### Features
7485

7586
- flexible

0 commit comments

Comments
 (0)