mdpress icon indicating copy to clipboard operation
mdpress copied to clipboard

mdpress:90:in `render': private method `render' called for #<RedcarpetCompat:0x00000002cf7810> (NoMethodError)

Open phokz opened this issue 9 years ago • 3 comments

Hi, it seems it does not work with current redcarpet. As a workaround, I have installed redcarpet 3.1.2 manually and it works.

I'll try to make a fix later.

Best regards Josef

phokz avatar Apr 17 '15 09:04 phokz

same here, how can I install that manually?

sils avatar May 31 '15 11:05 sils

first, use gem uninstall redcarpet --v=3.3.2 command to delete redcarpet3.3.2 , then use gem install redcarpet -v 3.1.2 command to install redcarpet3.1.2

victoryxs avatar Jul 25 '15 10:07 victoryxs

Thanks @victoryxs . with your advice, this error was solved.

In addition, Maybe gem uninstall parameter '--v' should modify as '--version' according to real version. In my computer:

$ sudo gem uninstall redcarpet --v=3.3.2
ERROR:  While executing gem ... (OptionParser::AmbiguousOption)
    ambiguous option: --v=3.3.2
$ redcarpet --version
Redcarpet 3.3.3
$ sudo gem uninstall redcarpet --v=3.3.3
ERROR:  While executing gem ... (OptionParser::AmbiguousOption)
    ambiguous option: --v=3.3.3
$ sudo gem uninstall redcarpet --version=3.3.3
...
$ sudo gem install redcarpet -v 3.1.2
...
successful.

shenjiefeng avatar Dec 14 '15 02:12 shenjiefeng