pelargir / textile_toolbar
- Source
- Commits
- Network (4)
- Issues (0)
- Downloads (1)
- Wiki (1)
- Graphs
-
Tree:
0ed9988
Matthew Bass (author)
Thu Apr 16 10:37:54 -0700 2009
commit 0ed9988572cb45dbb25cf4e3119df0d012cade6e
tree cf4b14e225b8b7cbc0e8591bfd79229dcb0d1007
parent e448bfcd13e219bbc33d1446b0768cc1319f3c68
tree cf4b14e225b8b7cbc0e8591bfd79229dcb0d1007
parent e448bfcd13e219bbc33d1446b0768cc1319f3c68
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
CHANGELOG | ||
| |
MIT-LICENSE | Mon Oct 27 08:56:15 -0700 2008 | |
| |
README | ||
| |
Rakefile | ||
| |
TODO | ||
| |
deleted_files | ||
| |
files/ | Tue Nov 18 09:46:23 -0800 2008 | |
| |
init.rb | ||
| |
install.rb | ||
| |
lib/ | ||
| |
tasks/ | ||
| |
test/ | Sat Nov 08 06:45:59 -0800 2008 | |
| |
textile_toolbar.gemspec |
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


