Not Working: Option Log Level is not Valid
Closed this issue ยท 8 comments
Hello, I've installed using the instructions on the README. When I open a markdown file, my browser (Firefox) pops open a new tab at localhost:8090, but nothing shows up.
I then tried echo "lala" | instant-markdown-d
Again, Firefox popped into view with new tab, but it was just reading and reading from "localhost". looking back at my terminal it was blocking with the following message: Option log level is not valid. Please refer to the README.
Not even sure which README I should be referring to. Thoughts?
Thanks in advance.
I'm also having the same issue (Ubuntu 16.04)
@alexandre-floriano, @randre03, check what you get when you run echo $BROWSER
I had my $BROWSER
variable set to w3m
, which does not work. Setting it to firefox made it work. Hope this help ๐
I"ve experienced the same issue.
@alexandre-floriano, @randre03, check what you get when you run
echo $BROWSER
I had my
$BROWSER
variable set tow3m
, which does not work. Setting it to firefox made it work. Hope this help
Sadly that didn't help, any other solution?
Same problem. No solution yet?
I ran into this problem while maintaining the AUR package, but it seems to be working fine now. Is everything upgraded to the newest version? If you need this specific version for some reason, this is what I used to fix it previously:
This is an issue with the upstream socket.io
. If you pin socket.io to version 0.9 it should work.
patch "package/package.json" "pin-socket-io-version-at-0.9.patch"
pin-socket-io-version-at-0.9.patch
--- package.json 2015-01-18 04:14:05.000000000 +0100
+++ package.json 2019-03-24 20:27:57.818719661 +0100
@@ -13,6 +13,6 @@
"highlight.js": "^8.4.0",
"markdown-it": "^3.0.3",
"send": "~0.1.0",
- "socket.io": ""
+ "socket.io": "~0.9"
}
}
See cameel's comment on this AUR package.
@nytpu The last released instant-markdown-d on npm registry is super old so don't rely on it for now. Use the one on github.
New versions are available now