Plugin Directory

Changeset 1644666


Ignore:
Timestamp:
04/25/2017 08:38:04 AM (9 years ago)
Author:
rinma
Message:

Updated readme.txt for a better description

Location:
tabbed-code
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tabbed-code/tags/1.0/readme.txt

    r1644651 r1644666  
    22Contributors: rinma
    33Donate link: https://marvin-dalheimer.de
    4 Tags: tabs,code,tabbed,snippets,examples
     4Tags: tabs,code,tabbed,snippets,examples,tabbedcode,tabbed code
    55Requires at least: 4.7
    66Tested up to: 4.7.4
     
    1515Adds Shortcodes for adding code examples in tabs to your blog.
    1616
     17The Plugin adds two shortcodes.
     18The first is [tab_group] and it needs an id. This id must be unique!
     19The second is [tab_code] and it takes the language from your code snippet as parameter.
     20You can use all languages from highlight.js.
     21When no language is provided the text will be interpreted as a simple text.
     22
     23Example:
     24
     25    [tab_group id="hello-world"]
     26        [tab_code lang="javascript"]
     27            console.log("Hello World");
     28        [/tab_code]
     29        [tab_code lang="sql"]
     30            SELECT * FROM hello_world;
     31        [/tab_code]
     32        [tab_code]
     33            Hello World
     34        [/tab_code]
     35    [/tab_group]
     36
    1737== Installation ==
    1838
    19391. Install the plugin through the WordPress plugins screen directly or upload the plugin to `/wp-content/plugins/TabbedCode` directory
    20401. Activate the plugin through the 'Plugins' screen in WordPress
    21 
    22 The Plugin adds two shortcodes.
    23 The first is [tab_group] and it needs an id. This id must be unique!
    24 The second is [tab_code] and it takes the language from your code snippet as parameter. You can use all languages from highlight.js.
    25 When no language is provided the text will be interpreted as a simple text.
    26 
    27 Example:
    28 [tab_group id="hello-world"]
    29   [tab_code lang="javascript"]
    30     console.log("Hello World");
    31   [/tab_code]
    32   [tab_code lang="sql"]
    33     SELECT * FROM hello_world;
    34   [/tab_code]
    35   [tab_code]
    36     Hello World
    37   [/tab_code]
    38 [/tab_group]
    39 
    4041
    4142== Frequently Asked Questions ==
  • tabbed-code/trunk/readme.txt

    r1644651 r1644666  
    22Contributors: rinma
    33Donate link: https://marvin-dalheimer.de
    4 Tags: tabs,code,tabbed,snippets,examples
     4Tags: tabs,code,tabbed,snippets,examples,tabbedcode,tabbed code
    55Requires at least: 4.7
    66Tested up to: 4.7.4
     
    1515Adds Shortcodes for adding code examples in tabs to your blog.
    1616
     17The Plugin adds two shortcodes.
     18The first is [tab_group] and it needs an id. This id must be unique!
     19The second is [tab_code] and it takes the language from your code snippet as parameter.
     20You can use all languages from highlight.js.
     21When no language is provided the text will be interpreted as a simple text.
     22
     23Example:
     24
     25    [tab_group id="hello-world"]
     26        [tab_code lang="javascript"]
     27            console.log("Hello World");
     28        [/tab_code]
     29        [tab_code lang="sql"]
     30            SELECT * FROM hello_world;
     31        [/tab_code]
     32        [tab_code]
     33            Hello World
     34        [/tab_code]
     35    [/tab_group]
     36
    1737== Installation ==
    1838
    19391. Install the plugin through the WordPress plugins screen directly or upload the plugin to `/wp-content/plugins/TabbedCode` directory
    20401. Activate the plugin through the 'Plugins' screen in WordPress
    21 
    22 The Plugin adds two shortcodes.
    23 The first is [tab_group] and it needs an id. This id must be unique!
    24 The second is [tab_code] and it takes the language from your code snippet as parameter. You can use all languages from highlight.js.
    25 When no language is provided the text will be interpreted as a simple text.
    26 
    27 Example:
    28 [tab_group id="hello-world"]
    29   [tab_code lang="javascript"]
    30     console.log("Hello World");
    31   [/tab_code]
    32   [tab_code lang="sql"]
    33     SELECT * FROM hello_world;
    34   [/tab_code]
    35   [tab_code]
    36     Hello World
    37   [/tab_code]
    38 [/tab_group]
    39 
    4041
    4142== Frequently Asked Questions ==
Note: See TracChangeset for help on using the changeset viewer.