I am using emacs 24 on fedora 17. I installed markdown-mode
, but whenever I try to export a file by typing C-c C-c m
or C-c C-c p
in emacs, I got this error:
/bin/bash: markdown: command not found
I read that this is probably an issue with the path variable, so I compared the env
variable by typing $ env
at the command line and Esc-! env RET
in emacs. I found the path variable description is the same in both cases.
What is this error? How can I fix it and execute markdown previews from within emacs?
M-x package-install markdown mode
just if it were a dependencies problem. How might I check for the markdown.pl script? Scripts installed by the latter way said don't include any .pl file. – Guadalupe$ which markdown
or$ which markdown-mode
I got:no markdown-mode in (/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/home/txe/.local/bin:/home/txe/bin)
. but, I'm still at the same point, so any clue is welcomed. – Guadalupe$ sudo yum install python-markdown2
or $ sudo yum install pandoc which offers to be like a swiss army knife when is about converting files from a markup format into another. Thanks anyway to everyone. This log post will be probably useful to anyone in the same point. – Guadalupe$ yum install python-markdown2
then$ ln -s /usr/bin/markdown2 /usr/local/bin/markdown
(thanks again, RupertPupkin ✪ fedora-forums) – Guadalupesudo apt-get install markdown
. – Intermezzo