Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7738139
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T08:11:15+00:00 2026-06-01T08:11:15+00:00

I was configuring syntax highlighting for my blog when I came across this problem.

  • 0

I was configuring syntax highlighting for my blog when I came across this problem. ‘”‘ is always escaped… Here is my code:

# in application_helper.rb
def coderay(content)
  defaults = {...}      

  content.gsub!(/\<pre\>\<code class=\"(.+?)\"\>(.+?)\<\/code\><\/pre\>/m) do
    CodeRay.scan($2, $1).div(defaults)
  end
end

def markdown(text)
  options = {...}    

  renderer = Redcarpet::Markdown.new(Redcarpet::Render::HTML, options)
  coderay(renderer.render(text)).html_safe
end

#in view file
...
<%= markdown @post.body %>
...

Everything works fine except that double quotes (“) are always escaped. Tried many methods but none worked.

Any help would be appreciated!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T08:11:17+00:00Added an answer on June 1, 2026 at 8:11 am

    Finally I used a less “elegant” way to solve this problem. Just in case someone else encounters this problem too.

    I created a new method as follows:

      def unescape(content)
        content.gsub!(/(&quot;|&#39;|&amp;|&lt;|&gt;)/) do
          case $1
            when "&quot;"
              '"'
            when "&#39;"
              "'"
            when "&amp;"
              "&"
            when "&lt;"
              "<"
            when "&gt;"
              ">"
          end
        end
      end
    

    Generally, this method just does some unescape.

    Before doing CodeRay.scan($2, $1).div(defaults), I used the unescape method to unescape $2, then everything goes fine.

    If someone knows a better way, please tell me.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem configuring BASIC-auth in jetty here's my web.xml <security-constraint> <web-resource-collection> <web-resource-name>resources</web-resource-name>
we're configuring parts of an application at runtime: ConfigurationManager.AppSettings[someKey] = someValue; This code is
I'm configuring DataImportHandler to index my db but I run into this problem. I
After configuring my iPhone app for unit testing, I belatedly noticed this warning in
The problem appears when configuring the server to work with a real host name
I have some problem while configuring symfony project on the production server. When I
I'm having problems with running my application on Heroku. It always shows me this
Configuring servlets in web.xml usually follows this pattern: http://www.mydomain.com/servletName/some/path/here What configuration do I use
While configuring custom fields in mantis i got this error message , any idea
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.