Adds inline tables to rich text fields in Craft CMS via the Redactor Table plugin.
Installation
- Unzip file and place
redactortable
directory into yourcraft/plugins
directory - -OR- do a
git clone https://github.com/khalwat/redactortable.git
directly into yourcraft/plugins
folder. You can then update it withgit pull
- Install plugin in the Craft Control Panel under Settings > Plugins
Add 'table' to the plugins array in your Redactor plugins configuration: http://buildwithcraft.com/docs/rich-text-fields#redactor-configs):
{
buttons: ['html','formatting','bold','italic','link','image'],
plugins: ['fullscreen', 'table'],
formattingTags: ['p', 'blockquote', 'pre', 'h1', 'h2', 'h3', 'h4'],
observeLinks: true,
toolbarFixedBox: true
}
- Initial release
- Imperavi for writing the plugin
- MildlyGeeky's Redactor Font Size plugin (https://github.com/mildlygeeky/craft-redactorfontsize)