Plugin Parse Mode (parse-mode
)
Plugin ini menyediakan sebuah transformer untuk menyetel pengaturan bawaan parse
dan sebuah middleware untuk menghidrasi Context
dengan varian method reply
yang lebih familiar, contohnya: reply
, reply
, dsb.
Penggunaan (Melakukan Pemformatan dengan Mudah)
ts
import { Bot, Context } from "grammy";
import { bold, fmt, hydrateReply, italic, link } from "@grammyjs/parse-mode";
import type { ParseModeFlavor } from "@grammyjs/parse-mode";
const bot = new Bot<ParseModeFlavor<Context>>("");
// Instal plugin-nya.
bot.use(hydrateReply);
bot.command("demo", async (ctx) => {
await ctx.replyFmt(fmt`${bold("bold!")}
${bold(italic("bitalic!"))}
${bold(fmt`bold ${link("blink", "example.com")} bold`)}`);
// fmt juga bisa dipanggil seperti function lainnya.
await ctx.replyFmt(
fmt(
["", " dan ", " dan ", ""],
fmt`${bold("bold")}`,
fmt`${bold(italic("bitalic"))}`,
fmt`${italic("italic")}`,
),
);
});
bot.start();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
js
const { Bot, Context } = require("grammy");
const { bold, fmt, hydrateReply, italic, link } = require(
"@grammyjs/parse-mode",
);
const bot = new Bot("");
// Instal plugin-nya.
bot.use(hydrateReply);
bot.command("demo", async (ctx) => {
await ctx.replyFmt(fmt`${bold("bold!")}
${bold(italic("bitalic!"))}
${bold(fmt`bold ${link("blink", "example.com")} bold`)}`);
// fmt juga bisa dipanggil seperti function lainnya.
await ctx.replyFmt(
fmt(
["", " dan ", " dan ", ""],
fmt`${bold("bold")}`,
fmt`${bold(italic("bitalic"))}`,
fmt`${italic("italic")}`,
),
);
});
bot.start();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
ts
import { Bot, Context } from "https://deno.land/x/grammy@v1.30.0/mod.ts";
import {
bold,
fmt,
hydrateReply,
italic,
link,
} from "https://deno.land/x/grammy_parse_mode@1.10.0/mod.ts";
import type { ParseModeFlavor } from "https://deno.land/x/grammy_parse_mode@1.10.0/mod.ts";
const bot = new Bot<ParseModeFlavor<Context>>("");
// Instal plugin-nya.
bot.use(hydrateReply);
bot.command("demo", async (ctx) => {
await ctx.replyFmt(fmt`${bold("bold!")}
${bold(italic("bitalic!"))}
${bold(fmt`bold ${link("blink", "example.com")} bold`)}`);
// fmt juga bisa dipanggil seperti function lainnya.
await ctx.replyFmt(
fmt(
["", " dan ", " dan ", ""],
fmt`${bold("bold")}`,
fmt`${bold(italic("bitalic"))}`,
fmt`${italic("italic")}`,
),
);
});
bot.start();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Penggunaan (Parse Mode dan Method Reply Bawaan)
ts
import { Bot, Context } from "grammy";
import { hydrateReply, parseMode } from "@grammyjs/parse-mode";
import type { ParseModeFlavor } from "@grammyjs/parse-mode";
const bot = new Bot<ParseModeFlavor<Context>>("");
// Instal plugin-nya
bot.use(hydrateReply);
// Atur parse_mode bawaan untuk ctx.reply
bot.api.config.use(parseMode("MarkdownV2"));
bot.command("demo", async (ctx) => {
await ctx.reply("*Teks* ini _diformat_ menggunakan `format bawaan`");
await ctx.replyWithHTML(
"<b>Teks</b> ini <i>diformat</i> menggunakan <code>withHTML</code>",
);
await ctx.replyWithMarkdown(
"*Teks* ini _diformat_ menggunakan `withMarkdown`",
);
await ctx.replyWithMarkdownV1(
"*Teks* ini _diformat_ menggunakan `withMarkdownV1`",
);
await ctx.replyWithMarkdownV2(
"*Teks* ini _diformat_ menggunakan `withMarkdownV2`",
);
});
bot.start();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
js
const { Bot, Context } = require("grammy");
const { hydrateReply, parseMode } = require("@grammyjs/parse-mode");
const bot = new Bot("");
// Install plugin-nya.
bot.use(hydrateReply);
// Atur parse_mode bawaan untuk ctx.reply
bot.api.config.use(parseMode("MarkdownV2"));
bot.command("demo", async (ctx) => {
await ctx.reply("*Teks* ini _diformat_ menggunakan `format bawaan`");
await ctx.replyWithHTML(
"<b>Teks</b> ini <i>diformat</i> menggunakan <code>withHTML</code>",
);
await ctx.replyWithMarkdown(
"*Teks* ini _diformat_ menggunakan `withMarkdown`",
);
await ctx.replyWithMarkdownV1(
"*Teks* ini _diformat_ menggunakan `withMarkdownV1`",
);
await ctx.replyWithMarkdownV2(
"*Teks* ini _diformat_ menggunakan `withMarkdownV2`",
);
});
bot.start();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
ts
import { Bot, Context } from "https://deno.land/x/grammy@v1.30.0/mod.ts";
import {
hydrateReply,
parseMode,
} from "https://deno.land/x/grammy_parse_mode@1.10.0/mod.ts";
import type { ParseModeFlavor } from "https://deno.land/x/grammy_parse_mode@1.10.0/mod.ts";
const bot = new Bot<ParseModeFlavor<Context>>("");
// Install plugin-nya.
bot.use(hydrateReply);
// Atur parse_mode bawaan untuk ctx.reply
bot.api.config.use(parseMode("MarkdownV2"));
bot.command("demo", async (ctx) => {
await ctx.reply("*Teks* ini _diformat_ menggunakan `format bawaan`");
await ctx.replyWithHTML(
"<b>Teks</b> ini <i>diformat</i> menggunakan <code>withHTML</code>",
);
await ctx.replyWithMarkdown(
"*Teks* ini _diformat_ menggunakan `withMarkdown`",
);
await ctx.replyWithMarkdownV1(
"*Teks* ini _diformat_ menggunakan `withMarkdownV1`",
);
await ctx.replyWithMarkdownV2(
"*Teks* ini _diformat_ menggunakan `withMarkdownV2`",
);
});
bot.start();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33