Tagged Questions
16
votes
2answers
931 views
Interpret newlines as <br>s in markdown (Github Markdown-style) in Ruby
I'm using markdown for comments on my site and I want users to be able to create line breaks by pressing enter instead of space space enter (see this meta question for more details on this idea)
How ...
8
votes
3answers
201 views
How do I allow safely and inexpensively allow images on my site?
I have developed a social networking site for gardeners website, and am interested in giving users the ability to add images to their "tweets".
If I allow them to upload images to the actual site, ...
7
votes
1answer
527 views
How can I restrict Markdown syntax in Ruby?
I wish to implement Markdown in a Rails CMS comments system using a Ruby library such as Maraku or Kramdown. I need to restrict which Markdown features the users can submit. In this system users ...
5
votes
3answers
2k views
how to display content with raw html
@post.body has following content (which is converted from Markdown by using RDiscount).How should I render it to the user in what it means? i.e I want to render it as strong text emphasized text...
...
5
votes
5answers
1k views
Truncate Markdown?
I have a Rails site, where the content is written in markdown. I wish to display a snippet of each, with a "Read more.." link.
How do I go about this? Simple truncating the raw text will not work, ...
4
votes
2answers
850 views
How to validate Markdown?
It's possible to write Markdown content with invalid syntax. Invalid means that the BlueCloth library fails to parse the content and throws an exception. The markdown helper in Rails doesn't catch any ...
3
votes
2answers
791 views
Markdown parser in Javascript
Does anyone know a markdown parser in Javascript ?
PS : Actually, I do this with request to server to parse it, but a client side parser would be better :) .
Edit : If there is no one, I will use ...
3
votes
2answers
1k views
Add a custom format in Rails (that will work with respond_to)
I have map.resources :posts and I want to be able to serve post bodies in markdown format. So I set up my respond_to block:
respond_to do |format|
format.markdown {
render :text => ...
3
votes
3answers
1k views
Sanitize Markdown in Rails?
Users can edit "articles" in my application. Each article is mastered in the DB and sent to the client as Markdown -- I convert it to HTML client side with Javascript.
I'm doing this so that when the ...
2
votes
1answer
58 views
In broad prespective, how to go about creating a write board like 37signals?
I am at the beginning stages of rails and wanted to build something like 37Signals write board just so I can learn and feel "accomplished" but don't know where to begin on the following segments:
is ...
2
votes
0answers
205 views
How to get markitup editor, using markdown set, to send markdown instead of html
I'm using rails and have a markItUp editor in place, using the Markdown custom set. The only thing I can't figure out is how to get it to submit raw Markdown instead of converted html. I plan on ...
2
votes
2answers
769 views
Embedding youtube video in markdown?
i use the ruby gem formatize to parse my markdown-formated text. now i want to embed a youtube-video into the markdown text, but whenever i add the iframe snippet, the gem (or markdown?) just removes ...
2
votes
1answer
449 views
Rails and markdown and editor
Has the mark down editor been ported to a rails app? (the same one used on this SO)
What about parsing the markdown markup?
2
votes
2answers
622 views
Which markup language? Markdown or?
I am currently looking for a markup language to use in a project. I want to allow site vistors to edit a wiki like page using a markup language (not HTML).
I am implementing this site in Ruby on ...
2
votes
1answer
557 views
rails markitup/markdown or textile
I would like to give my user's the option to nicely format their comments. I am not really looking for something super fancy, perhaps something lightweight.
There is a ton of information about ...
2
votes
2answers
565 views
Possible to embed markdown within erb?
If you use haml as rails view template, you can write portion of your page using markdown by using the ":markdown" filter.
Is is possible to do the same using erb?
1
vote
1answer
29 views
Has anyone figured out how to embed video using the Redcarpet gem for Markdown in Rails 3.2?
Wondering if anyone has a good solution for this. My app is displaying nothing when embedding both the old and new version of YouTube's video embed code. I'm using GitHub's Markdown Gem Redcarpet, and ...
1
vote
1answer
252 views
Escape HTML in markdown in HAML
Is it possible, in Rails 3.1, to escape HTML in markdown in HAML to avoid XSS? I mean when you do something like:
:markdown
Hello #{@user.name}
Thanks.
1
vote
1answer
103 views
Toolbar Implementation for redcarpet (Markdown interpreter)
I am looking to use the Redcarpet gem (https://github.com/tanoku/redcarpet) in an app of mine.
Is there some kind of toolbar add in that i can use to give users a toolbar with "stack-like" options ...
1
vote
1answer
56 views
removing html created by markdown
I am using Ruby (and Rails) with Markdown to convert the content of a text field into HTML in a post.
So for example:
# Heading.
Some text.
creates
<h1>Heading.</h1>
<p>Some ...
1
vote
1answer
700 views
Installing and Using Redcarpet (rails)
I am trying to implement markdown into my rails app, and I came across Redcarpet which seems to be what I'd like to use. I have added the gem to my Gemfile and I have cloned the Redcarpet source from ...
1
vote
2answers
435 views
Allowing only Youtube/Vimeo iframes in markdown
I'm trying to allow users to embed youtube or vimeo videos in posts for a Rails3 app we're working on, and both use iframes now. The sanitize helper seems like it only allows you to whitelist tags on ...
1
vote
2answers
425 views
Syntax highlighting in HAML's markdown filter
I'm using HAML's markdown filter, like this:
:markdown
This is markdown text, yay!
but I want to do syntax highlighting for code inside that text, something like:
:markdown
This is markdown ...
1
vote
3answers
184 views
generate nofollow links in RDiscount output
My rails app is using RDiscount to generate HTML from user-supplied markdown text, and I noticed that the anchor tags don't have rel="nofollow". This is a big issue for me as my app is open to the ...
1
vote
1answer
183 views
Handling more than one markup language in a text area
I'd like to now how to handle multiple markup languages (textile, markdown and bbcode) in a text area using ruby on rails 3.
The user would be able to select the markup language he/she wants to use, ...
1
vote
3answers
386 views
Markdown to text/plain and text/html for multipart email
I’m looking for a solution to send DRY multipart emails in Rails. With DRY I mean that the content for the mail is only defined once.
I’ve thought about some possible solutions but haven’t found any ...
1
vote
0answers
130 views
rails & markdown error: uncaught exception: Control.TextArea requires Object.Event to be loaded
So, I've got bluecloth installed and I'm trying to use the Control.TextArea javascript WYSIWYG editor.
Anyways, I followed the tutorial on the page and when I load the corresponding view, I get an ...
0
votes
3answers
129 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
2answers
321 views
Adding Markdown into my Rails 3 app
I am trying to add Markdown to my Rails 3 web app but am having problems.
I have tried rdiscount and markdownizer but either they're not working or I'm not writing the correct code for them.
The ...
0
votes
1answer
162 views
haml with markdown claims rdiscount not found
I've specified
gem 'haml'
gem 'rdiscount'
in my Gemfile and ran bundle install
The relevant code is
.welcome-message
:markdown
Welcome **#{current_user.email}**
When I access the page I ...
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
2answers
203 views
Is there a cleaner way to enable markdown output in HAML?
Using HAML in Rails, whenever I have a text field of some kind that I want the user to be able to easily format, I use HAML's markdown filter. In the template that looks like this:
.description
...
0
votes
2answers
173 views
What are the downsides of delegating Markdown parsing to the client side?
I'm planning on including Markdown in a coming project. In the past, I've just used a pre-packaged server-side Markdown parser, re-sanitized the HTML output (an unnecessary step?) and shipped it off ...
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
2answers
179 views
Is it the best practice to store content in the database as html when content is written in markdown?
Or is just saving markdown and rendering it on requests usually okay?
I'm writing a site that uses markdown for content. Stack overflow similarly uses markdown for comments and questions.
I'm ...