Mutt

Mutt : 在 mutt 中渲染 html

  • September 28, 2017

我想在 mutt 中渲染 html,但我還沒有成功配置它。

我想使用 w3m,所以我的*.mailcap*看起來像:

text/html; "$BROWSER" %s &; test=test -n "$DISPLAY"; needsterminal;
text/html; w3m -I %{charset} -T text/hmtl; copiousoutput;

對於 mutt 中的渲染,我添加了:

auto_view text/html
alternative_order text/plain text/enriched text/html

這就是我打開text/html文件時的樣子(我按下v然後returntext/html

[-- Autoview using w3m -I 'utf-8' -T text/hmtl --]
<html><head></head><body><!-- content: html tiny_mce -->
<p>Bonjour a tous,</p>
<p>Une page Didel pour le cours Analyse et Probabilites a ete cree.</p>
<p>Tous les etudiants qui suivent ce cours sont invites a y s'insrcire.</p>
<p>Les DMs vont etre mises en ligne sur ce site.</p>
<p>Cordialement,</p>
<p>Adina Ralea</p>

<div class="lnk_link_panel">
</div>
<br /><br />-- <br />Adina Giorgianna Ralea<br />Gestionnaire du cours L3
+Mathématiques-Informatique 2015-2016 (L3MI2014)<br /><br /><a
+href="http://didel.script.univ-paris-diderot.fr/">Diderot en ligne</a><br
+/>     Administrateur: <a
+href="mailto:admin-didel@script.univ-paris-diderot.fr">Admin</a><br
+/></body></html>

我們可以看到 autoview 使用的是 w3m,但是為什麼不渲染呢?

-T您傳遞給的值w3m有錯字。它應該text/html代替text/hmtl

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

引用自:https://unix.stackexchange.com/questions/258909