Tagged Questions

17
votes
6answers
6k views

Better ruby markdown interpreter?

I'm trying to find a markdown interpreter class/module that I can use in a rakefile. So far I've found maruku, but I'm a bit wary of beta releases. Has anyone had any issues with maruku? Or, do you ...
16
votes
2answers
927 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 ...
9
votes
3answers
2k views

How to generate PDF from markdown using pure ruby

I'm currently using Kramdown to generate HTML from Markdown in Ruby. I know that I can generate a latex file using kramdown and convert it to pdf usaing a command line utility. But I want a pure ruby ...
7
votes
1answer
526 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
1answer
144 views

ruby markdown parser with WikiWord support?

I am using git-wiki for my personal note storage. It works very well, except that WikiWords are converted to links before the markdown parsing stage, using a regular expression. This messes up scores ...
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
2answers
425 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 ...
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
848 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
1answer
41 views

Pure Ruby (not C) Markdown library

I'm looking for a Markdown library, written purely in Ruby (not C, or anything else). I need to use it as an example because I am having to write my own. Do you know of a pure Ruby implementation of a ...
3
votes
4answers
265 views

Get first few elements of a html fragment with xpath on ruby

For a blog like project, I want to get the first few paragraphs, headers, lists or whatever within a range of characters from a markdown generated html fragment to display as a summary. So if I have ...
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
3answers
101 views

Replacing partial regex matches in place with Ruby

I want to transform the following text This is a ![foto](foto.jpeg), here is another ![foto](foto.png) into This is a ![foto](/folder1/foto.jpeg), here is another ![foto](/folder2/foto.png) In ...
2
votes
1answer
441 views

How can I automatically escape HTML content using Jekyll and Markdown?

In foo.markdown I have the following: --- layout: default title: Snarky little Ewok --- A little Ewok is sometimes referred too as <h3>. But pappa Ewok is called <h1> - if you know ...
2
votes
1answer
159 views

Apply multiple filters in haml (or wrap :markdown filter's content with a CDATA tag)

I'm using HAML to generate a XML output. Inside one of the element I'm using the :markdown filter to generate a small block of HTML code (for example, an unordered list of items). !!! XML %root ...
2
votes
4answers
2k views

How to run Ruby/Python scripts from inside PHP passing and receiving parameters?

I need to turn HTML into equivalent Markdown-structured text. OBS.: Quick and clear way of doing this with PHP & Python. As I am programming in PHP, some people indicates Markdownify to do the ...
2
votes
2answers
583 views

Rail 3 escaping maruku

I am using Maruku with my RoR3 app. But the problem is that when i use the h(text) method to escape the text from the database before i use Maruku it escapes > to &gt; so Maruku wont see this ...
1
vote
1answer
24 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
99 views

yard 0.7.3 fails to build my README in both markdown and textile

I've decided to convert the README file in a project of mine to markdown and have been using yard verify the documentation rendered out ok. So I installed rdiscount, changed README to README.md and ...
1
vote
2answers
146 views

Ruby/Slim: parse Markdown from a YAML file

Been struggling for a while with some YAML parsing inside a Slim template. my YAML file contain shortdesc: > markdown: if you want to up the feelgood factor Cuban style, then this Monday night ...
1
vote
1answer
102 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
175 views

Maruku incorrectly parsing second line of code blocks?

I'm using Maruku (Ruby) to parse some Markdown formatted text. I have a problem when trying to format a block of code like such: This is a normal line # pretend this line is empty printf("First ...
1
vote
1answer
691 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
1answer
118 views

RDiscount: Allow only certain tags

Is it possible to limit the set of allowed "tags" when using RDiscount? Let's say I want to prevent the user from creating lists e.g.? Or only allow bold and italic tags? And if not, can this be ...
1
vote
2answers
126 views

Markdown, enable processing of markdown within block level html

From Daring Fireball's Markdown doc Note that Markdown formatting syntax is not processed within block-level HTML tags. E.g., you can’t use Markdown-style emphasis inside an HTML block. I want ...
1
vote
3answers
312 views

How can I get Sinatra to deliver Markdown as HTML as well as the source code as plain text?

I'm building a simple "notes" site using Sinatra and Heroku. I write my notes up using Markdown and use the rdiscount gem to convert them to HTML in Sinatra. So a request for /foo would serve up the ...
1
vote
2answers
423 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
182 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
2answers
102 views

Eval inline ruby inside a markdown document

I need to call some helpers from a Markdown view. Is this somehow a good practice and is generally supported on popular ruby-based Markdown parsers?
0
votes
1answer
28 views

Partial Markdown parsing

I have an application that needs to parse a subset of Markdown. I basically only want to support inline elements (bold, italic, links, etc), not block level elements (p, h1, h2, etc). There are a ...
0
votes
1answer
39 views

Is there a faster alternative to kramdown that still uses PHP Markdown syntax?

I just moved my site to Octopress, which comes preconfigured with the rdiscount Markdown parser, but my archives have a lot of posts that were written with the PHP Markdown Extra syntax. The main ...
0
votes
2answers
36 views

Ruby regular expression for asterisks/underscore to strong/em?

As part of a chat app I'm writing, I need to use regular expressions to match asterisks and underscores in chat messages and turn them into <strong> and <em> tags. Since I'm terrible with ...
0
votes
1answer
85 views

Jekyll not interpreting markdown

I'm creating a site using jekyll.rb. I have a page called about.html: <div class="grid_10 page"> {% include about_content.markdown %} </div> In about_content.markdown I have some ...
0
votes
2answers
34 views

Extracting source code from a document for testing

I wrote tutorials for some Ruby gems I wrote. It is in markdown (Kramdown) text document. To ensure the integrity of the source code in the tutorials as the development of the gems continue I want to ...
0
votes
1answer
30 views

Active Record - automatically generating markdown in the model

I'm writing a Ruby module to provide automatic markdown generation on blog posts etc. The code so far looks like this: class Post < ActiveRecord::Base contains_markdown end module ...
0
votes
1answer
142 views

How to transform HTML to Markdown using Nokogiri?

Is there any way to transform HTML into Markdown text? HTML is pretty simple - it's just a div element with several <p> elements inside. There may be images - I want to preserve them as well. ...
0
votes
2answers
110 views

vim script: working with the visual selection as well as the word under cursor

I have a small vim script that queries Google to insert links in markdown-formatted text. Currently it only works using the word under cursor, which it retrieves using expand("<cword>") and ...
0
votes
0answers
279 views

convert HTML into markdown [closed]

Possible Duplicate: I need to go from HTML to markdown, any suggestion? Is there a conversion that turns (valid) HTML into markdown? It has to be in Ruby, if possible using RDiscount. ...
0
votes
2answers
197 views

Translate github flavored markdown regex from ruby to python

I'm trying to get an implementation of github flavored markdown working in python, with no luck... I don't have much in the way of regex skills. Here's the ruby code from github: # in very clear ...
0
votes
1answer
313 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
105 views

Regular expression to turn hyphens into double hyphens

My implementation of markdown turns double hyphens into endashes. E.g., a -- b becomes a – b But sometimes users write a - b when they mean a -- b. I'd like a regular expression to fix this. ...
0
votes
2answers
204 views

How to compile RDiscount on Solaris?

I have a few Solaris 10 boxes and I'd like to have RDiscount running there. (They are Joyent accelerators, which have a somewhat customized, BSD-ish, userland, in case it matters.) I'm aware of ...