The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
79 views

Couldn't load redcloth_scan on Ubuntu

I am trying to execute the test (cucumber) on staging environment via jenkins. The system is configured with ruby 1.9.3p194 and rails 3.0.9. bundle exec cucumber Using the default profile... ...
0
votes
1answer
101 views

cannot install RedCloth

as in the title, i have problems installing gem RedCloth. i downloaded RubyGems v1.8.24, and use ubuntu 12.04, here is my console log: kuba@kuba-P5Q-SE:~$ sudo gem install RedCloth [sudo] password ...
0
votes
1answer
79 views

Rails) What Markdown Should I Use Now?

I need the following features: hard-wrap text auto link (make urls into clickable links) @name should turn into links to user/show action (I should be able to write this helper method) prevent code ...
0
votes
0answers
11 views

Redcloth: open/close functions

I'm using the Redcloth as follows (taken from the html.rb formatter): def li_open(opts) "#{"\t" * opts[:nest]}<li>#{opts[:text]}" end def li_close(opts=nil) "</li>\n" end ...
0
votes
0answers
10 views

Redcloth - the order of applying transformations

I have the following code written in Textile: Testing if <b>bold</b> works. <pre> Testing if <b>bold</b> works. </pre> The problem is that I can't control ...
0
votes
0answers
29 views

Redcloth - parsing normal text

I'm using RedCloth for parsing from texlite to HTML, but I would like to get the usual text and add something to it. Any ideas how to do that? Currently I can parse tables/images/etc, but not text ...
0
votes
2answers
89 views

Need a Textile/RedCloth Editor for Rails [closed]

I am developing a Rails application and want to allow users to use Textile markdown to format text. I have decided on using Textile/RedCloth for this rather than a WYSIWYG editor due to the risks of ...
1
vote
0answers
44 views

RedCloth: avoid html-escaping on custom extension when :filter_html enabled

Tried searching with Google but found nothing similar... I have an app that uses textile to format messages. I am trying to tighten up the security and only allow HTML generated via textile markup. ...
1
vote
0answers
609 views

RedCloth Installation failed

i was trying to install octopuses, but i got stuck installing RedCloth (http://redcloth.org). I think the problem is the same of this one, but that's the solution for windows and i run OSX (10.8). ...
1
vote
0answers
59 views

RedCloth dynamic tag

I'm trying to make a custom tag for RedCloth. However, I need to fetch some data from the database and base the tag on that. I.e. when writing "image. 1" it should fetch a user uploaded picture from ...
0
votes
2answers
60 views

Get text word count from RedCloth

I've just started using RedCloth as part of a simple wiki feature in my ruby on rails app. I'd like to be able to display a word count next to wiki pages in the index. Given the textile pulled from ...
1
vote
1answer
86 views

Truncate - unexpected result with sanitize(RedCloth.new(object))

I have some text that I would like to output using RedCloth. I am trying to figure out how this works and I can't get the result that I would like. Used Code: truncate(sanitize(RedCloth.new("*some* ...
1
vote
1answer
164 views

Convert MediaWiki Markup to Textile Markup

I have a problem :0 At my place of work we have two wiki systems and I have been charged with finding a way of migrating from a MediaWiki to a redmine wiki -- only problem is they use different markup ...
0
votes
1answer
86 views

RedCloth and Rails

I want use RedCloth gem, i install it, in my gemfile i put -> gem 'RedCloth' in my show.html.erb i put -> <%= RedCloth.new(@post.text).to_html %> and i saw simple html syntax, than i use ...
7
votes
4answers
2k views

Failed to build gem native extension when install RedCloth-4.2.9 install Linux

I want to install Octopress in my computer. I try to do it like Octopress document. When I run bundle install I got error message An error occured while installing RedCloth (4.2.9), and Bundler ...
0
votes
0answers
46 views

Using local Textile for Rails blog posts

I am learning Rails and am trying to make my own blog. I am using RedCloth for the textile->html and was wonder how I would go on about doing it. I wanted to use local files and not pull from a ...
0
votes
0answers
41 views

Adding RedCloth to rails_admin

I could only find a topic adding ckeditor to rails_admin but I'ld love to add RedCloth because of it's simplicity. Is there a way getting RedCloth working with rails_admin
0
votes
0answers
103 views

Segmentation Fault Error wrt RedCloth and Ruby Debug gem

I tried to run a very basic command to view my Routes wrt all controller actions, using rake routes . I get the below error ...
0
votes
1answer
353 views

Using helpers (or render partials) from custom RedCloth tags

I'm trying to call a view helper from a custom RedCloth tag and am having absolutely no luck at all. All of the examples I can find have the custom tag method create and return a literal string ...
2
votes
0answers
241 views

Couldn't load 1.9/redcloth_scan in windows

I searched here, didnot get any clue. here is the error message when i'm running rake db:schema:load RAILS_ENV=production Initializing database schema rake aborted! no such file to load -- ...
1
vote
1answer
554 views

How to integrate redcloth with coderay

I want to use syntax highlighting along with redcloth. The description of coderay says: Fast and easy syntax highlighting for selected languages, written in Ruby. Comes with RedCloth ...
5
votes
1answer
936 views

How to install RedCloth on Windows?

When running gem install RedCloth (on Windows XP) I got: Fetching: RedCloth-4.2.8.gem (100%) Temporarily enhancing PATH to include DevKit... Building native extensions. This could take a while... ...
3
votes
2answers
1k views

RedCloth is breaking my Rails 3 blog

Something like Textile for the posts feels pretty necessary, but this is giving me all kinds of headaches. bundle package and bundle install are both working fine, and confirm that RedCloth is set to ...
1
vote
1answer
1k views

NoMethodError: undefined method `name' for “RedCloth”:String and can't run make due to ruby/config.h error

I tried the steps in Problems with the rails console, RVM and readline because when I try to run rails or rails console I get a NoMethodError: undefined method `name' for "RedCloth":String When I try ...
0
votes
2answers
621 views

Installing RedCloth gem from github with bundler

I'm running into a problem with the latest versioned release of the RedCloth gem, 4.2.7. Specifically, it's the gcc 4.6 compile issue that was resolved in this commit, but has not yet been included ...
2
votes
2answers
402 views

Ruby, Textile: how to get plain text without tags and textile format

I have articles with bodies that are textile formatted text. I make full text search with sphinx and I want to highlight query in results. Sphinx give me something like this A *simple* _<span ...
0
votes
1answer
639 views

How do I render RedCloth html in a view in Rails3?

In rails 2, I use <%=h %> to display HTML-generated by RedCloth, but how do I do that in Rails 3? <%= raw RedCloth.new(@review).to_html %>
0
votes
2answers
248 views

HTML entities in Textile

HTML entities are not displayed correctly in Textile because the ampersand is converted into &amp; by the system. Is there any way to input e.g. &#x2318; and actually get ⌘? Wrapping ...
0
votes
1answer
135 views

How can I insert a ruby form into Redcloth-modified HTML in Rails?

I have a page where I use RedCloth to use markdown for the text and images. I want to be able to place a form somewhere in the text by putting the string [Form] and my application does a substitution ...
1
vote
1answer
440 views

RedCloth escaping HTML output

After watching this RailsCast, I thought I'd give RedCloth a try. Unfortunately, it looks like I'm having an issue that involves the resultant HTML being encodeded instead of rendered as straight ...
62
votes
26answers
43k views

rails error, couldn't parse YAML

After updating the gems I've got this: /home/megas/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/psych.rb:148:in `parse': couldn't parse YAML at line 182 column 9 (Psych::SyntaxError) from ...
0
votes
1answer
804 views

Error installing RedCloth on Rails 3.0.3 and RVM on Ubuntu 10.10

I'm trying to add Redcloth to my Gem file, and when I run 'bundle install', I get the following: Installing RedCloth (4.2.6) with native extensions ...
0
votes
1answer
116 views

Using tables with RedCloth inserts a lot of extra <br/> before each table

I am using the tables in RedCloth, for example |cat|yeah|what| |beery|true|fly| |baru|false|mirror| But I get a lot of <br/> and then the table.... What is going on and how can I fix this?
2
votes
1answer
505 views

redcloth (MissingSourceFile) - new problem after Heroku changed to bundler 1.0.7

Our app had been working. Now I just pushed some new code into staging on Heroku for the 1st time after they moved to bundler 1.0.7. Now our app crashes and I got this error message - ...
1
vote
1answer
424 views

textile - how do I add a class to a definition list?

I'm using RedCloth to convert some textile text into html. One particular scenario seems particularly apt for using definition lists. With RedCloth, definition lists have this syntax (source): - ...
1
vote
2answers
369 views

Rails - Redcloth, how do I convert exsiting wysiwyg crap html?

I've seen the light, I'm converting my site over to RedCloth to use the wonderful textile markup. Problem is, I have a couple years worth of html content in my database that is not textile markup. ...
0
votes
1answer
96 views

PATH problem during RedCloth installation

I'm trying to run "bundle install" and it tries to install RedCloth. But it seems like theres a problem during the installation because of my path variable. When I tried "gem install RedCloth" I had ...
1
vote
1answer
203 views

restrict users from using certain tags on redcloth / textile in rails

Hey I'm trying to find a way to restrict users from using certain tags like h1. or h2.in the form field. Like I dont want them to be able to blow up the form field and spam. Is there way to do that ...
3
votes
1answer
471 views

Standalone RedCloth on Windows

Context I've recently taken part of a software development project for which I'd like technical documents to be written using a textual markup (suitable to be tracked in the code repository, ...
3
votes
2answers
3k views

Uninitialized Constant in Rails 3.0.1 using the RedCloth 4.2.2 gem

I'm having an issue with using RedCloth in my local application. I keep getting the following error: uninitialized constant ActionView::CompiledTemplates::RedCloth This happens because I have the ...
0
votes
1answer
286 views

Extend RedCloth via Redmine plugin?

I'm new to Ruby/Redmine/Redcloth but I'm trying to achieve the following: The default way to build a link in Textile is "foo":http://bar. However, 90% of the day I use Atlassian products, which use ...
2
votes
3answers
672 views

How to convert RedCloth.to_html back into editable vanilla text?

I have with RedCloth saved plain text in a form and converted it to HTML. For example, writing this in my form, and saving it, would make it display the exact same way I wrote it : This sentence gets ...
1
vote
2answers
1k views

How do I parse HTML in Rails?

I have a string with html tags in it saved. => "<p>hey man this is crazy g funk</p>\n<p>here i come with another crazy message from..</p>\n<p>dj eassssy ...
2
votes
1answer
279 views

Covert “back” to textile markup when editing post via RedCloth and Acts-as-Textiled?

Question: How can I "convert" my textile generated HTML back to textile markup in my app? Here's the situtation. I managed to piece together a poor man's blog editor in my Rails 3 app by implementing ...
0
votes
1answer
206 views

How does one add RedCloth to a form_for?

An embaressing question, but I can't seem to translate the documentation to an actual form_for. This is all the site provides.. RedCloth.new("Some text").to_html #=> "<p>Some ...
1
vote
2answers
612 views

Ruby DevKit not working for RedCloth and other gems on WindowsXP

I'm a completely new to RoR and don't have much web development experience. I usually give up at this point, but I need a RoR dev environment for a job and I can't pick the brain of the site's creator ...
1
vote
2answers
2k views

How to use rails3 with RedCloth. require 'RedCloth' not working

I have installed RedCloth, by using the devkit. Using gem install RedCloth. If I use plain irb, then require 'RedCloth' works fine. But if I use rails console and do require 'RedCloth', it says it ...
0
votes
2answers
489 views

Textile question: redcloth anchor links

How do I write this in textile (i'm using the redcloth gem) <a href="#tips">Visit the Useful Tips Section</a> <a name="tips">Useful Tips Section</a> I know the first part, ...
5
votes
2answers
915 views

How do I create a RedCloth live preview using jQuery?

I've had problems with many of the WYSIWYG gems/plugins for Rails, so I'm building one myself using the RedCloth gem. I want users to see a live preview of their HTML-formatted text as they're filling ...
1
vote
2answers
119 views

How can I get Textile to create links out of plain URL's?

Many of my users are typing in plain URL's and not using the Textile format for creating links. I would like Textile to just make the URL's linkable to the URL's. I don't really need to worry about ...

1 2