mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
chore: update REAMDE.md to include reference to flavors
This commit is contained in:
parent
5d57d71ef7
commit
e00d270383
24
README.md
24
README.md
|
@ -262,7 +262,27 @@ var defaultOptions = showdown.getDefaultOptions();
|
||||||
|
|
||||||
* **disableForced4SpacesIndentedSublists**: (boolean) [default false] Disables the requirement of indenting sublists by 4 spaces for them to be nested,
|
* **disableForced4SpacesIndentedSublists**: (boolean) [default false] Disables the requirement of indenting sublists by 4 spaces for them to be nested,
|
||||||
effectively reverting to the old behavior where 2 or 3 spaces were enough. (since v1.5.0)
|
effectively reverting to the old behavior where 2 or 3 spaces were enough. (since v1.5.0)
|
||||||
|
|
||||||
|
## Flavors
|
||||||
|
|
||||||
|
You can also use flavors or presets to set the correct options automatically, so that showdown behaves like popular markdown flavors.
|
||||||
|
|
||||||
|
Currently, there are two flavors available:
|
||||||
|
|
||||||
|
* github - GFM (GitHub Flavored Markdown)
|
||||||
|
* vanilla - original markdown flavor
|
||||||
|
|
||||||
|
### Global
|
||||||
|
```javascript
|
||||||
|
showdown.setFlavor('github');
|
||||||
|
```
|
||||||
|
|
||||||
|
### Instance
|
||||||
|
```javascript
|
||||||
|
converter.setFlavor('github');
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## CLI Tool
|
## CLI Tool
|
||||||
|
|
||||||
Showdown also comes bundled with a Command Line Interface tool. You can check the [CLI wiki page][cli-wiki] for more info
|
Showdown also comes bundled with a Command Line Interface tool. You can check the [CLI wiki page][cli-wiki] for more info
|
||||||
|
@ -388,4 +408,4 @@ Showdown is powered by:<br/>
|
||||||
[ext-wiki]: https://github.com/showdownjs/showdown/wiki/extensions
|
[ext-wiki]: https://github.com/showdownjs/showdown/wiki/extensions
|
||||||
[coding-rules]: https://github.com/showdownjs/code-style/blob/master/README.md
|
[coding-rules]: https://github.com/showdownjs/code-style/blob/master/README.md
|
||||||
[ng-commit-guide]: https://github.com/showdownjs/code-style/blob/master/README.md#commit-message-convention
|
[ng-commit-guide]: https://github.com/showdownjs/code-style/blob/master/README.md#commit-message-convention
|
||||||
[boilerplate-repo]: https://github.com/showdownjs/extension-boilerplate
|
[boilerplate-repo]: https://github.com/showdownjs/extension-boilerplate
|
||||||
|
|
Loading…
Reference in New Issue
Block a user