Plugin Directory

Changeset 1360098


Ignore:
Timestamp:
02/28/2016 04:52:06 PM (10 years ago)
Author:
Methodos
Message:

readme again

Location:
indent-lists-button
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • indent-lists-button/tags/0.1.1/ili-indent-lists-button.php

    r1359649 r1360098  
    66Author: Klaas van der Linden
    77Author URI: https://www.culturalservices.nl/
    8 Description: Indent all Lists!!!
    9 License: GNU General Public License v2 or later
    10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
    11 
    12 Indent all lists! This plugin is useful if you can�t use the regular indent button to indent a list.
    13 
    148*/
    159//Direct access to this file is not permitted
     
    1812define("ILI_URL",plugin_dir_url( __FILE__ ));
    1913
    20 //Add new buttons and add the padding:40px-stylesheet to the editor.
     14//Add new buttons and add the padding:40px-stylesheet to the wordpress editor iframe.
    2115add_action( 'init', 'ili_init' );
    2216function ili_init() {
     
    3226}
    3327
    34 //Tell wordpress to add a button to its tinymce editor, the details of which are contained in the external plugin registered earlier
     28//Tell wordpress to add a button to its tinymce editor, the details of which are contained in the tinymce external plugin 'ili_mce_plugin' registered earlier
    3529function ili_add_button( $buttons ) {
    3630    if(in_array('indent',$buttons))
  • indent-lists-button/tags/0.1.1/readme.txt

    r1360072 r1360098  
    5959In all themes. Some themes (notably Twenty Fifteen and Twenty Sixteen) align lists at the same level as the surrounding text (see [the first screenshot](https://wordpress.org/plugins/indent-lists-button/screenshots/)), in which case it can be quite annoying that you cannot choose to indent lists.
    6060
    61 = Isn't there simply an alignment-code I can put in the html to indent a list? =
     61= Isn't there simply an alignment-code I use to indent a list? =
    6262
    6363Yes, there is, but it requires knowing and applying the basics of html and css. And we think this button is the most easy way to indent a list.
     
    6969= Is it possible to undo the indentation of the list? =
    7070
    71 Yes. You can undo the indentation by clicking the Indent List button again.
     71Yes. You can undo the current indentation by clicking the Indent List button again.
    7272
    7373== Screenshots ==
  • indent-lists-button/trunk/ili-indent-lists-button.php

    r1359646 r1360098  
    66Author: Klaas van der Linden
    77Author URI: https://www.culturalservices.nl/
    8 Description: Indent all Lists!!!
    9 License: GNU General Public License v2 or later
    10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
    11 
    12 Indent all lists! This plugin is useful if you can�t use the regular indent button to indent a list.
    13 
    148*/
    159//Direct access to this file is not permitted
     
    1812define("ILI_URL",plugin_dir_url( __FILE__ ));
    1913
    20 //Add new buttons and add the padding:40px-stylesheet to the editor.
     14//Add new buttons and add the padding:40px-stylesheet to the wordpress editor iframe.
    2115add_action( 'init', 'ili_init' );
    2216function ili_init() {
     
    3226}
    3327
    34 //Tell wordpress to add a button to its tinymce editor, the details of which are contained in the external plugin registered earlier
     28//Tell wordpress to add a button to its tinymce editor, the details of which are contained in the tinymce external plugin 'ili_mce_plugin' registered earlier
    3529function ili_add_button( $buttons ) {
    3630    if(in_array('indent',$buttons))
  • indent-lists-button/trunk/readme.txt

    r1360072 r1360098  
    5959In all themes. Some themes (notably Twenty Fifteen and Twenty Sixteen) align lists at the same level as the surrounding text (see [the first screenshot](https://wordpress.org/plugins/indent-lists-button/screenshots/)), in which case it can be quite annoying that you cannot choose to indent lists.
    6060
    61 = Isn't there simply an alignment-code I can put in the html to indent a list? =
     61= Isn't there simply an alignment-code I use to indent a list? =
    6262
    6363Yes, there is, but it requires knowing and applying the basics of html and css. And we think this button is the most easy way to indent a list.
     
    6969= Is it possible to undo the indentation of the list? =
    7070
    71 Yes. You can undo the indentation by clicking the Indent List button again.
     71Yes. You can undo the current indentation by clicking the Indent List button again.
    7272
    7373== Screenshots ==
Note: See TracChangeset for help on using the changeset viewer.