Tagged Questions
The bluecloth tag has no wiki summary.
5
votes
4answers
1k views
BlueCloth isn't working with Rails 3
Is BlueCloth compatible with Rails 3? I can't make it work, maybe someone uses it?
There is supposed to be a helper called 'markdown' available in the views after requiring 'bluecloth', but this ...
5
votes
2answers
427 views
Markdown to plain text in Ruby?
I'm currently using BlueCloth to process Markdown in Ruby and show it as HTML, but in one location I need it as plain text (without some of the Markdown). Is there a way to achieve that?
Is there a ...
3
votes
3answers
170 views
What's wrong with my markdown syntax? Broken in Stack Overflow and bluecloth
I just wrote some markdown and it doesn't seem to render correctly.
Is it legal syntax to have an ordered list, followed by newlines, then followed by an unordered list? Or is this a bug in ...
3
votes
3answers
2k views
Get underlined text with Markdown
I am using BlueCloth as a Markdown library for Ruby, and I can't find any syntax for getting a text underlined. What is it?
2
votes
0answers
255 views
Bluecloth v2.0.10 with windows 7 not working
WIth Ruby 187, I had downloaded devkit from http://rubyinstaller.org/downloads
and followed the instruction per https://github.com/oneclick/rubyinstaller/wiki/Development-Kit.
I had also ensured that ...
1
vote
0answers
64 views
is bluecloth 2 a drop-in replacement for BlueCloth 1?
Is bluecloth 2 a drop-in replacement for BlueCloth 1? We have a rails 2.3 app at the moment which uses the BlueCloth 1 gem; if we change our config to use the newer one, will we need to do anything ...
1
vote
3answers
340 views
gem problems with snow leopard and nokogiri bluecloth and feedzirra
I just upgraded to snow leopard, ran the migration assistant and have spent hours and hours trying to get these gems to work with no luck. When I try to start my server I get the errors below. All the ...
1
vote
1answer
255 views
displaying markdown in my textarea
I'm using BlueCloth to create html from markdown from the content my users enter into a textarea like this:
def create
@post = Post.new(params[:post]) do |post|
body = BlueCloth.new(post.body)
...
0
votes
0answers
56 views
bluecloth (2.2.0) with windows 7 does not work
bluecloth (2.2.0) with windows 7 does not work, I got the following error message with gem install bluecloth, any help? thanks a lot!
my ruby version is: ruby 1.9.2p290 (2011-07-09) [i386-mingw32]
...
0
votes
3answers
128 views
Redcarpet/Bluecloth not allowing headers?
Is there a way to use either Redcarpet or Bluecloth such that when it interpolates the markdown it won't make any headers?
For example:
#header 1
yields:
header 1
header 1 (preferred)
...
0
votes
1answer
62 views
Installing bluecloth - configuration options?
I tried installing the bluecloth gem by typing
gem install bluecloth
But when I do that I get the following error message:
checking for random()... *** extconf.rb failed ***
Could not create ...
0
votes
1answer
375 views
On Ruby on Rails, how to do Syntax highlighting using Markdown (RDiscount / BlueCloth) with CodeRay?
I am aware there is a Railscast and ASCIIcast for using Textile (RedCloth) with CodeRay, and the way it is done is by a helper:
module ApplicationHelper
def coderay(text)
...
0
votes
1answer
92 views
BlueCloth 2 and unicode
The following Haml causes to a Encoding::UndefinedConversionError when the latest BlueCloth (2.0.11) is used for markdown processing under Ruby 1.9.2:
:markdown
résumé
Apparently, the humble é ...
0
votes
1answer
314 views
Haml Markdown Filter Breaking on Example Ruby Code in Rails
I'm using Haml in rails and have been writting with the :markdown filter (bluecloth gem), but a piece of example code is in ruby and the page tries to execute the #{values}, how can I stop this?
Here ...
0
votes
1answer
395 views
Ruby on Rails form f.text_area contains additional spaces
I have a quite average form in Rails, trough blog_kit
<% form_for(@blog_post, :html => { :multipart => true }) do |f| %>\
... other code
<%= f.text_area :body %>
<%= ...
0
votes
1answer
2k views
Problems installing rdoc, irb, bluecloth, chronic on fedora 12
What do these errors mean?
[root@localhost config]# gem install bluecloth
Building native extensions. This could take a while...
ERROR: Error installing bluecloth:
ERROR: Failed to build gem ...
0
votes
3answers
576 views
BlueCloth error on windows
Having a bit of a nightmare getting bluecloth to work on windows. I grabbed the gem from the site (since gem install bluecloth doesnt work). However, I can't seem to get the library to load
...
-2
votes
1answer
76 views
RoR BlueCloth copy the html
Hello I am using for a rails (2.3.4) BlueCloth (2.0.11) an want type my text in die text box and after that I want to copy the html preview, which is provided by BlueCloth.
Now: when ever I mark ...