This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Matthew (author)
Sat Aug 22 06:16:47 -0700 2009
commit d3fd0930a1909a6e6dde2f8e39192d75954ac880
tree 794e5543b0474bfc508c5daf48a9d699bd43161c
parent 359a18afb991b4469f0c1e4580d69973c0711db8
tree 794e5543b0474bfc508c5daf48a9d699bd43161c
parent 359a18afb991b4469f0c1e4580d69973c0711db8
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu Aug 21 12:44:10 -0700 2008 | |
| |
CHANGELOG | Wed Oct 22 09:02:09 -0700 2008 | |
| |
MIT-LICENSE | Mon Oct 27 08:56:15 -0700 2008 | |
| |
README | Sat Nov 08 09:39:20 -0800 2008 | |
| |
Rakefile | Thu Aug 21 12:44:10 -0700 2008 | |
| |
TODO | Tue Nov 18 09:46:23 -0800 2008 | |
| |
deleted_files | Mon Nov 03 19:06:36 -0800 2008 | |
| |
files/ | Tue Nov 18 09:46:23 -0800 2008 | |
| |
init.rb | Mon Nov 03 19:06:36 -0800 2008 | |
| |
install.rb | Mon Nov 03 19:06:36 -0800 2008 | |
| |
lib/ | Thu Apr 16 10:39:04 -0700 2009 | |
| |
tasks/ | Mon Nov 03 19:06:36 -0800 2008 | |
| |
test/ | Sat Nov 08 06:45:59 -0800 2008 | |
| |
textile_toolbar.gemspec | Sat Aug 22 06:16:47 -0700 2009 |
README
= textile_toolbar
Adds a handy Textile toolbar to any text area. The toolbar currently offers
the following functions:
- Bold: select some text and click this button to make it bold.
- Italic: select some text and click this button to make it italic.
- Insert Hyperlink: select some text, click, enter URL, and link is inserted.
- Insert Image: click, enter image URL, and image is inserted at cursor.
A link to a Textile reference page is also shown beside the toolbar.
== Installation
Install the gem directly:
sudo gem install pelargir-textile_toolbar --source=http://gems.github.com
Or install the gem in your Rails project as a plugin:
script/plugin install git://github.com/pelargir/textile_toolbar.git
Or clone the project:
git clone git://github.com/pelargir/textile_toolbar.git
Then copy the required image and JS files into your Rails project
rake textile_toolbar:install
== Usage
Use the textile_area helper where you would normally use the text_area
helper. Yep, it's that simple!
<%= text_area :article, :body %> # plain old text area
<%= textile_area :article, :body %> # text area with Textile toolbar
Form blocks are supported, letting you do this also:
<% form_for :article do |f| -%>
<%= f.textile_area :body %>
<% end -%>
Any options that can be passed to text_area can also be passed to textile_area.
For example, to set the width and height:
<%= textile_area :article, :body, :rows => 5, :cols => 10 %>
== Resources
Repository: http://github.com/pelargir/textile_toolbar/
Blog: http://matthewbass.com
Author: Matthew Bass
Extraction work sponsored by Terralien








