Browse Source

checklist plugin

pull/867/head
Mattias Wikstrom 7 years ago
parent
commit
113152957a
  1. 1
      _data/nav.yml
  2. 24
      plugins/checklist.md

1
_data/nav.yml

@ -222,6 +222,7 @@
pages:
- url: "#charmap"
- url: "#charmap_append"
- url: "checklist"
- url: "code"
- url: "codesample"
- url: "colorpicker"

24
plugins/checklist.md

@ -0,0 +1,24 @@
---
layout: default
title: Checklist plugin
title_nav: Checklist
description: Add checklists to your content.
keywords: lists todo checklist
controls: toolbar button
---
The **Checklist** plugin adds interactive checklists to your content.
> Note: The Checklist Plugin has to be used together with the Lists plugin to work.
### Adding the Checklist toolbar button
Use the following script to add the Checklist toolbar button:
```js
tinymce.init({
selector: "textarea", // change this value according to your HTML
plugins: "lists checklist",
toolbar: "checklist"
});
```
Loading…
Cancel
Save