> For the complete documentation index, see [llms.txt](https://brian3647.gitbook.io/103-breads/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://brian3647.gitbook.io/103-breads/reference/emojify.md).

# Emojify

\`breads.emojify\`

### Function: `emojify_discord`. Return string with :discord\_emojis: ready to be sent.

```typescript
function emojify_discord(string: string, ignore_chars?: number[]): string;
```

#### Example:

```typescript
 const emojify_discord = require("103-breads").emojify.emojify_discord;
 
 console.log(emojify_discord("123")); // :one: :two: :three:
 console.log(emojify_discord("a")); // :regional_indicator_a:
 console.log(emojify_discord("123", [0, 2])); // 1:two:3
```
