# Creating a Stylize Instance

If you want to get started quickly, use the `stylize()` method. It returns a stylize instance with a basic default config, with StandardTags.defaults(), Placeholder API & MiniPlaceholders.

#### Example:

```java
Stylize stylize = Stylize.stylize();
```

***

To customize your stylize instance, utilize the `builder()` method. This enables you to select specific features and options tailored to your needs.

#### Methods:

* `parsePlaceholderAPI(boolean)`: Enable/disable Placeholder API parsing.
* `parseMiniPlaceholders(boolean)`: Enable/disable MiniPlaceholders parsing.
* `characters(Collection<Character>)`: Set legacy styling characters.
* `tags(TagResolver)`: Set tag resolver.
* `build()`: Creates the `Stylize` instance.

#### Example:

```java
Stylize stylize = Stylize.builder()
    .characters(List.of('&'))
    .tags(StandardTags.defaults())
    .build();
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sytexmc.gitbook.io/stylize/usage/creating-a-stylize-instance.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
