Recensioner för Markdown Viewer Webext
Markdown Viewer Webext av Cimbali
104 recensioner
- Betygsatt 5 av 5av Firefox-användare 14085932, för 8 år sedan
- Betygsatt 4 av 5av Firefox-användare 13895268, för 8 år sedan
- Betygsatt 5 av 5av Firefox-användare 14030336, för 8 år sedanExactly as advertised. I open .md or .markdown files in the browser and this "beautifies" them. Many thanks!
One suggestion I have is to have a "dark mode" that inverts the black on white or to have a "Custom CSS" box in the settings that would allow us to adjust this.
If this plugin is available on GitHub (haven't checked yet), I might consider making a pull request to implement the feature ^ mentioned above.
Edit: Fix typoUtvecklarens svar
postad för 8 år sedanThanks for the feedback! There is a Custom CSS box in settings, and it should do what you want. Try entering " body { background-color: black; color: white } " as the CSS. - Betygsatt 2 av 5av Firefox-användare 5605776, för 8 år sedanI cannot make this addon to display a markdown document which is located on my system.
- Betygsatt 5 av 5av conorj, för 8 år sedanWorks fine for file opened locally - raw markdown is displayed initially and upon clicking icon it is rendered correctly.
- Betygsatt 5 av 5av Firefox-användare 12813342, för 8 år sedanIf firefox does not correctly assume that your files are UTF-8 encoded, a possible solution (besides using a Byte Order Marker in your file, which is annoying for several reasons) is the following:
go to about:config and set the intl.charset.fallback.utf8_for_file variable to true. That worked for me.
This is related to the following bug report:
https://bugzilla.mozilla.org/show_bug.cgi?id=1071816Utvecklarens svar
postad för 8 år sedanThank you for the feedback and for this tip! I have added it to the README, and the README is linked from the add-on options page. - Betygsatt 5 av 5av Firefox-användare 13899646, för 8 år sedanNote that the author notes that the extension only works "if the content is plain text". That means your browser needs to be rendering the file in a tab already, just without rendering the markdown elements. If it's downloading it instead, the suggestion from 7cac17 below, to add a MIME type for markdown files, worked for me (I'm also on Ubuntu).
- Betygsatt 5 av 5av Firefox-användare 13008505, för 9 år sedan
- Betygsatt 5 av 5av Firefox-användare 13811014, för 9 år sedanMarkdown that is super effective. Don't know why it is receiving negative reviews.
- Betygsatt 1 av 5av Firefox-användare 13809707, för 9 år sedanDoes not work at all for me with local markdown files. The effect is that a popup comes up asking what to do with the file, and when selecting "Open in FF" it opens a new tab and brings up the same popup again. Using FF 52.6.0 on RHEL 7.4. I did not try markdown files from a HTTP server.
Utvecklarens svar
postad för 8 år sedanThis is the most common user issue on the project in GitHub. I've now explained in the README file why a BOM is important and supplied workarounds, including setting intl.charset.fallback.utf8_for_file to true, which tells Firefox to assume UTF-8 for local files. You the user have to do this step; the add-on has no way to configure settings. Fortunately, it's really very very easy!- Betygsatt 5 av 5av Firefox-användare 13801131, för 9 år sedanNice add-on, woks fine for me. Maybe just missing the rendering of [TOC] tag.
- Betygsatt 5 av 5av Firefox-användare 13798972, för 9 år sedanFor people who found FF keeps asking "what app should be used to open the markdown file", just check the solution (at least for Ubuntu) here: https://github.com/KeithLRobertson/markdown-viewer/issues/2#issuecomment-321940542
- Betygsatt 5 av 5av Firefox-användare 13189330, för 9 år sedanUtf8 - encoded Chinese documents display messy code, while GB - encoded Chinese documents display normal. Please fix it. Thank you for sharing this practical extension.
------------------------
The problem has been solved. An option to change the default encoding to UTF-8 in about:config: set the value of intl.charset.fallback.utf8_for_file to true. It is perfect now. - Betygsatt 5 av 5av Firefox-användare 13628151, för 9 år sedan
- Betygsatt 2 av 5av Firefox-användare 13519333, för 9 år sedan
- Betygsatt 3 av 5av Nobitz, för 9 år sedanNot working with this URL: https://gist.githubusercontent.com/anonymous/6033c7fcb0caf7de6f0eec4637e79756/raw/71a19f13314e0e4af8c0913dd7131465b5910488/ja_en.md
And, it chooses wrong encoding system for Japanese characters. You can also reproduce it with above markdown file.Utvecklarens svar
postad för 8 år sedanYour site gist.githubusercontent.com replies with a CORS header Access-Control-Allow-Origin. Firefox therefore refuses to inject the add-ons scripts into the page, so your markdown never gets rewritten/beatified. If you save the file locally and view that in the browser, it should convert. But since your file is UTF-8 with no BOM, you will need to configure intl.charset.fallback.utf8_for_file to true. Please see the project README file for more details. - Betygsatt 3 av 5av Kelvin Chin, för 9 år sedanIt is a nice and quick add-on, but the only limitation is it looks like not well support non english charater unless encode under utf-8 with bom
Utvecklarens svar
postad för 8 år sedanThank you for the review! There are now solutions for this. Please try the latest version and check out the README file. It explains how to configure a setting which supports local UTF-8 files with no BOM. - Betygsatt 5 av 5av luk3yx, för 9 år sedanThis add-on just works, I can now view markdown files with no additional software.
- Betygsatt 4 av 5av Philipp Bielefeldt, för 9 år sedanIt just displays .md files. Plain and simple – exactly what I searched for (there are MD editors with far more bells and whistles, if you want to, this one is totally minimalist).
Unfortunately, Firefox (at least under openSUSE Linux) has an issue with the MIME type. The solution linked here solves it: https://github.com/KeithLRobertson/markdown-viewer/issues/2
Oh, and btw, it only works (for me) with UTF-16, not UTF-8 as long as you don't manually add it a BOM, which is somewhat unusual … (can be fixed with " sed -i '1s/^/\xef\xbb\xbf/' foo ") - Betygsatt 5 av 5av Firefox-användare 13314696, för 9 år sedanWorks well. I noticed that "##Some header here" doesn't convert to an , but "## Some header here" does (note the space after the ##). But, at least according to daringfireball, that space *is* required, so...