How to use Drupal CKEditor Module for nested numbering

user2393205

I am using CKEditor Module in Drupal, but not able to put nested numbering.
I want to put content like below:

1. Text1

   1.1 Text2

       1.1.1 Text3
Caleb Hess

Currently that functionality is not built into CKEditor. You could use CSS to accomplish the nested numbering. Below is the CSS code used to accomplish this task taken from the Drupal Module page for CKEditor.

ol {
    counter-reset: item;
}
li {
    display: block;
}
li:before {
    content: counters(item, ".") " ";
    counter-increment: item
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

ckeditor in Drupal 8 custom module

From Dev

How to use CKEditor as an NPM module built with webpack or similar

From Dev

How to use restws or services module in drupal to expose web services

From Dev

How to make nested lists with automatic numbering in Sphinx?

From Dev

how to make doxygen use section numbering in html

From Dev

How to resize uploaded inline images with ckeditor in drupal 8

From Dev

nested numbering list in mediawiki

From Dev

How to set permission in custom drupal module in Drupal7

From Dev

how to use a defined class in ckeditor?

From Dev

How to avoid nested font sizes with CKEditor?

From Dev

How to work with the Entity Registration module in Drupal 7?

From Dev

How Publish Module On Drupal.org

From Dev

How to use CKEDITOR.replace after CKEDITOR.inline

From Dev

Nested Ordered List Numbering Issue

From Dev

Can I use the Backup and Migrate module to back up Drupal 6 and restore in Drupal 7?

From Dev

How to use undo/redo in CKEditor without toolbar?

From Dev

How to use Line Height plugin in CKEditor?

From Dev

How to remove format use ckeditor-rails

From Dev

How to use undo/redo in CKEditor without toolbar?

From Dev

How to use ng-ckeditor directive in angularjs?

From Dev

How to use preg_match_all in Drupal

From Dev

CKEditor - Widget plugin: How to set focus into nested editable of widget?

From Dev

How to migrate entity from XML to Drupal 7 using migrate module

From Dev

How to concretely display any kind of content within a drupal module

From Dev

How to migrate entity from XML to Drupal 7 using migrate module

From Dev

How to display data below my form in drupal 7 custom module

From Dev

How do I update a drupal module without deleting it first?

From Dev

how to specify drupal mail save file module's directory path?

From Dev

How to remove persistent cookie from Text size module in drupal 7

Related Related

  1. 1

    ckeditor in Drupal 8 custom module

  2. 2

    How to use CKEditor as an NPM module built with webpack or similar

  3. 3

    How to use restws or services module in drupal to expose web services

  4. 4

    How to make nested lists with automatic numbering in Sphinx?

  5. 5

    how to make doxygen use section numbering in html

  6. 6

    How to resize uploaded inline images with ckeditor in drupal 8

  7. 7

    nested numbering list in mediawiki

  8. 8

    How to set permission in custom drupal module in Drupal7

  9. 9

    how to use a defined class in ckeditor?

  10. 10

    How to avoid nested font sizes with CKEditor?

  11. 11

    How to work with the Entity Registration module in Drupal 7?

  12. 12

    How Publish Module On Drupal.org

  13. 13

    How to use CKEDITOR.replace after CKEDITOR.inline

  14. 14

    Nested Ordered List Numbering Issue

  15. 15

    Can I use the Backup and Migrate module to back up Drupal 6 and restore in Drupal 7?

  16. 16

    How to use undo/redo in CKEditor without toolbar?

  17. 17

    How to use Line Height plugin in CKEditor?

  18. 18

    How to remove format use ckeditor-rails

  19. 19

    How to use undo/redo in CKEditor without toolbar?

  20. 20

    How to use ng-ckeditor directive in angularjs?

  21. 21

    How to use preg_match_all in Drupal

  22. 22

    CKEditor - Widget plugin: How to set focus into nested editable of widget?

  23. 23

    How to migrate entity from XML to Drupal 7 using migrate module

  24. 24

    How to concretely display any kind of content within a drupal module

  25. 25

    How to migrate entity from XML to Drupal 7 using migrate module

  26. 26

    How to display data below my form in drupal 7 custom module

  27. 27

    How do I update a drupal module without deleting it first?

  28. 28

    how to specify drupal mail save file module's directory path?

  29. 29

    How to remove persistent cookie from Text size module in drupal 7

HotTag

Archive