Changeset 1644666
- Timestamp:
- 04/25/2017 08:38:04 AM (9 years ago)
- Location:
- tabbed-code
- Files:
-
- 2 edited
-
tags/1.0/readme.txt (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tabbed-code/tags/1.0/readme.txt
r1644651 r1644666 2 2 Contributors: rinma 3 3 Donate link: https://marvin-dalheimer.de 4 Tags: tabs,code,tabbed,snippets,examples 4 Tags: tabs,code,tabbed,snippets,examples,tabbedcode,tabbed code 5 5 Requires at least: 4.7 6 6 Tested up to: 4.7.4 … … 15 15 Adds Shortcodes for adding code examples in tabs to your blog. 16 16 17 The Plugin adds two shortcodes. 18 The first is [tab_group] and it needs an id. This id must be unique! 19 The second is [tab_code] and it takes the language from your code snippet as parameter. 20 You can use all languages from highlight.js. 21 When no language is provided the text will be interpreted as a simple text. 22 23 Example: 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 17 37 == Installation == 18 38 19 39 1. Install the plugin through the WordPress plugins screen directly or upload the plugin to `/wp-content/plugins/TabbedCode` directory 20 40 1. 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 World37 [/tab_code]38 [/tab_group]39 40 41 41 42 == Frequently Asked Questions == -
tabbed-code/trunk/readme.txt
r1644651 r1644666 2 2 Contributors: rinma 3 3 Donate link: https://marvin-dalheimer.de 4 Tags: tabs,code,tabbed,snippets,examples 4 Tags: tabs,code,tabbed,snippets,examples,tabbedcode,tabbed code 5 5 Requires at least: 4.7 6 6 Tested up to: 4.7.4 … … 15 15 Adds Shortcodes for adding code examples in tabs to your blog. 16 16 17 The Plugin adds two shortcodes. 18 The first is [tab_group] and it needs an id. This id must be unique! 19 The second is [tab_code] and it takes the language from your code snippet as parameter. 20 You can use all languages from highlight.js. 21 When no language is provided the text will be interpreted as a simple text. 22 23 Example: 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 17 37 == Installation == 18 38 19 39 1. Install the plugin through the WordPress plugins screen directly or upload the plugin to `/wp-content/plugins/TabbedCode` directory 20 40 1. 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 World37 [/tab_code]38 [/tab_group]39 40 41 41 42 == Frequently Asked Questions ==
Note: See TracChangeset
for help on using the changeset viewer.