Mutt: mutt에서 HTML 렌더링 [닫기]

Mutt: mutt에서 HTML 렌더링 [닫기]

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

펼치면 이런 느낌이에요텍스트/html문서(누르고 v다음 return으로 이동합니다.텍스트/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
+/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Administrateur: <a
+href="mailto:[email protected]">Admin</a><br
+/></body></html>

autoview가 w3m을 사용하고 있는 것을 볼 수 있는데 왜 렌더링되지 않습니까?

답변1

-T전달한 값에 w3m오타가 있습니다. text/html다음으로 교체 해야 합니다 text/hmtl.

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

관련 정보