=== Code Snippet DM === Contributors: necroob Donate link: devmaverick.com/donate Tags: code, snippet, embed, code-snippet, display code Requires at least: 4.0 Tested up to: 5.4.1 Requires PHP: 5.4 Stable tag: trunk License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Code Snippet DM enables you to display code snippets in a stylish way inside your content. == Description == Display your code snippets in a stylish way inside your content. The plugin uses shortcodes and also very intuitive TinyMCE interface. Code Snippet DM was inspired by the [Carbon](https://carbon.now.sh) project. We created a simple way to display your code snippets but also have control over the way it appears, thus making it more stylish. Also, on the front end in the top right you will find a `Copy Code` button that allows you to copy to clipboard the entired code snippet. The plugin provides you with a TinyMCE button that will allow you to display the code or an option to use a shortcode. You can open the shorcode `[dm_code_snippet]` and in the content inside and close it `[/dm_code_snippet]`. = Options = There are a number of options that you can use in the shortcode: * **background** with options **yes** or **no** will enable/disable the color background (Default **yes**) * **background-mobile** with options **yes** or **no** will enable/disable the color background for mobile devices (Default **yes**) * **bg-color** accepts any HEX, RGB or RGBA value to change the background color (Default **#abb8c3**) * **theme** with options **light** or **dark** that changes the code editor theme (Default **dark**) * **language** with options **php**, **javascript**, **css**, **markup**, **clike**, **python**, **ruby** will highlight the syntaxes based on what you select for your code (Default **php**) * **wrap** with options **yes** or **no** will wrap the code or add a horizontal scroll bar to display it as it is (Default **no**) * **copy-text** this is used for the text shown on the copy button. If it's not added it will use the default option. (Default **Copy Code**) * **copy-confirmed** this is used for the text shown after you click the copy button. If it's not added it will use the default option. (Default **Copied**) **Example of shortcode:** `[dm_code_snippet background="yes" background-mobile="yes" bg-color="#abb8c3" theme="light" language="css" wrapped="no" copy-text="Get the Code!" copy-confirmed="You have it!"] .dm-code-snippet.dark { background: $default-bg; padding: 40px 35px 45px 35px; margin: 30px 0; } [/dm_code_snippet]` Use the TinyMCE button if you don't want to add the shortcode yourself. (see Screenshots) == Installation == 1. Upload `code-snippet-dm` folder to the `/wp-content/plugins/` directory. 1. Activate the plugin through the 'Plugins' menu in WordPress. 1. Start using the shortcode or TinyMCE button to display your code. == Frequently Asked Questions == = Can I see a live demo? = Sure! Check it out [here](https://apps.devmaverick.com/code-snippet/) == Screenshots == 1. DM Code Snippet TinyMCE button 2. How to add the code using the TinyMCE button 3. Example of shortcode added via TinyMCE 4. Front end example of a dark theme 5. Front end example of a dark theme with the background disabled 6. Front end example of a light theme 7. Front end example of a light theme with the background disabled == Changelog == = 1.1 = * Added option to customize the Copy button text and also the confirmation text after you click it. * Fixed small content alignment issue. = 1.2 = * Added support for shortcodes inside the `[dm_code_snippet]`[your-shortcode]`[\dm_code_snippet]`.