You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just a giving my feedback having installed on Ubuntu 16.04. The default nodejs package installs at /usr/bin/nodejs, not /usr/bin/node, so instant-markdown-d complains about not being able to find it. However, creating a symlink didn't help because the version of nodejs is too old anyway, and gives a syntax error about block-scoped declarations not being allowed outside of strict mode.
To get it to work, I had to install a newer version of nodejs:
sudo npm -g install n
sudo n stable
Then it all works fine!
The text was updated successfully, but these errors were encountered:
Just a giving my feedback having installed on Ubuntu 16.04. The default
nodejs
package installs at/usr/bin/nodejs
, not/usr/bin/node
, soinstant-markdown-d
complains about not being able to find it. However, creating a symlink didn't help because the version of nodejs is too old anyway, and gives a syntax error about block-scoped declarations not being allowed outside of strict mode.To get it to work, I had to install a newer version of nodejs:
Then it all works fine!
The text was updated successfully, but these errors were encountered: