Análises de Markdown Viewer Webext
Markdown Viewer Webext por Cimbali
Análise de Nobitz
Not 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.
And, it chooses wrong encoding system for Japanese characters. You can also reproduce it with above markdown file.
Resposta do desenvolvedor
publicado há 7 anosYour 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.
100 análises
- Avaliado em 5 de 5por Dennis, há 2 meses
- Avaliado em 5 de 5por Usuário 18719343 do Firefox, há 6 meses
- Avaliado em 5 de 5por Usuário 14643647 do Firefox, há 10 meses
- Avaliado em 5 de 5por Peter Lyons Kehl, há 2 anosThank you. So helpful. Confirming that it works in Firefox 116.0.2 on Manjaro Linux.
- Avaliado em 5 de 5por Chih-Hsuan Yen, há 2 anosI also got the security error, and looks like it is recognized by the author. Going back to the old version fixes it. From https://github.com/Cimbali/markdown-viewer/issues/106#issuecomment-1614403451,
> this is likely due to some errors in the latest release, which I’ve pulled from cup.aihedy.com. If you simply uninstall and reinstall the add-on you’ll revert to version 1.8.1 which is the previous one.
Thanks for the hard work! - Avaliado em 5 de 5por Usuário 17476775 do Firefox, há 2 anos
- It does everything it should, but my new lines don't get rendered unless I double them.
When I write something like this:
"Hello
World"
It gets rendered as
"Hello World"
When I write
"Hello
World"
it gets rendered as
"Hello
World".
I am using Notepad++ to write the .md file and it uses [CR][LF] (Windows standard I think) as new line indicators.
Edit:
Updated my rating because I was just using it wrong.Resposta do desenvolvedor
publicado há 2 anosHi @atoad that’s correct, as specified by the markdown spec (see https://daringfireball.net/projects/markdown/syntax#p). To do a simple line break you can finish the line with either a single backslash (\), an html line break tag (<br />) or 2 spaces ( ). - Avaliado em 5 de 5por b1nary b0y, há 3 anos
Resposta do desenvolvedor
publicado há 3 anosUnfortunately this issue is linked to how Firefox on Linux detects and handles file types. There’s nothing that can be done from within the addon, but our README does provide a few ways to configure Firefox or your system to fix the issue. To allow addons to directly handle file types we are waiting on https://bugzilla.mozilla.org/show_bug.cgi?id=1457500- Avaliado em 5 de 5por Usuário 16502277 do Firefox, há 3 anos
- I really like this addon. It makes me able to view markdown files from my local drives. But it's like 60% works. First md file after firefox startup always rendered, then after i made some changes to the file, then refresh it, it doesn't get rendered. Maybe it's not the addon's fault, maybe it's firefox. I don't know. But either way keep up the good work!
Resposta do desenvolvedor
publicado há 3 anosHi @Wicaksono, this is weird behaviour. Could you come and describe the issue over on github (https://github.com/KeithLRobertson/markdown-viewer/issues/) with more details on your system etc?