如何在Lynx浏览器中配置热键以打开系统浏览器页面?


2

当您在Lynx中查看HTML页面时,有时纯文本格式化是不够的(特别是对于设计不佳的HTML)。Lynx可以配置为使用热键在另一个浏览器(例如firefox)中打开当前页面吗?

我正在尝试完成以下用于查看HTML电子邮件的进度:

mutt> lynx> firefox

我可以在我的.muttrc中使用以下设置在lynx中打开html电子邮件:

# .muttrc
auto_view text/html                                      # view html automatically
alternative_order text/plain text/enriched text/html     # save html for last

这个设置在我的.mailcap文件中

# .mailcap
text/html; w3m -I %{charset} -T text/html; copiousoutput;

参考

但是,一旦我在lynx中查看邮件,我想选择设置快捷键以打开功能齐全的浏览器(即firefox),以防邮件需要更高级的渲染。

这可能吗?

Answers:


2

我基于这个StackExchange帖子想出来了。

.muttrc文件

# .muttrc
auto_view text/html                                      # view html automatically
alternative_order text/plain text/enriched text/html     # save html for last

.mailcap文件

# .mailcap
text/html; firefox '%s' &; test=test -n "$DISPLAY"; needsterminal;
text/html; lynx -dump %s; nametemplate=%s.html; copiousoutput;

有一些大的电子邮件平台(Sendgrid)将自动转换甚至text/plain附件text/html。它已经成为一种必要alternative_order text/html text/plain
lkraav
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.