You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
535 B

10 years ago
  1. ---
  2. layout: default
  3. title: Horizontal Rule plugin
  4. title_nav: Horizontal Rule
  5. description: Insert a horizontal line.
  6. keywords: hr insert
  7. controls: toolbar button, menu item
  8. ---
  9. The Horizontal Rule (`hr`) plugin allows a user to insert a horizontal rule on the page at the cursor insertion point. It also adds a toolbar button and a menu item `Horizontal line` under the `Insert` menu.
  10. **Type:** `String`
  11. ##### Example
  12. ```js
  13. tinymce.init({
  14. selector: "textarea", // change this value according to your HTML
  15. plugins: "hr"
  16. });
  17. ```