mdpress
mdpress copied to clipboard
mdpress:90:in `render': private method `render' called for #<RedcarpetCompat:0x00000002cf7810> (NoMethodError)
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
same here, how can I install that manually?
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
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.