showdown/docs/flavors.md

718 B

Overview

You can use flavors (or presets) to set the preferred options automatically. In this way, Showdown behaves like popular Markdown flavors.

Currently, the following flavors are available:

Set flavor

=== "Globally"

```js
showdown.setFlavor('github');
```

=== "Locally"

```js
converter.setFlavor('github');
```