외부 사용자가 텍스트 파일을 Markdown 파일로 읽도록 하는 방법은 무엇입니까?

외부 사용자가 텍스트 파일을 Markdown 파일로 읽도록 하는 방법은 무엇입니까?

mdMIME 유형은 다음 파일의 확장명에 대해 설정됩니다.

$ cat /etc/mime.types | grep markdown
text/markdown                                   md markdown

그러나 파일의 Mime 유형을 확인할 때 .md여전히 text/plain.

$ file --mime-type -b Mime.md
text/plain

기존 파일과 새로 생성된 모든 파일에 MIME 유형이 .md있는지 어떻게 확인할 수 있나요 ? text/markdown또한 파일을 친구(나와 동일한 파일 시스템(ext4)를 사용하는 친구)에게 이메일로 보내면 변경된 Mime 유형이 유지됩니까?


콘텐츠에는 다음도 포함됩니다 /usr/share/mime/text/markdown.xml.

<?xml version="1.0" encoding="utf-8"?>
<mime-type xmlns="http://www.freedesktop.org/standards/shared-mime-info" type="text/markdown">
  <!--Created automatically by update-mime-database. DO NOT EDIT!-->
  <comment>Markdown document</comment>
  <comment xml:lang="ast">Documentu Markdown</comment>
  <comment xml:lang="bg">Документ — Markdown</comment>
  <comment xml:lang="ca">document Markdown</comment>
  <comment xml:lang="cs">dokument Markdown</comment>
  <comment xml:lang="da">Markdown-dokument</comment>
  <comment xml:lang="de">Markdown-Dokument</comment>
  <comment xml:lang="el">Έγγραφο Markdown</comment>
  <comment xml:lang="en_GB">Markdown document</comment>
  <comment xml:lang="es">documento Markdown</comment>
  <comment xml:lang="eu">Markdown dokumentua</comment>
  <comment xml:lang="fi">Markdown-asiakirja</comment>
  <comment xml:lang="fr">document Markdown</comment>
  <comment xml:lang="ga">cáipéis Markdown</comment>
  <comment xml:lang="gl">documento de Markdown</comment>
  <comment xml:lang="he">מסמך Markdown</comment>
  <comment xml:lang="hr">Markdown dokument</comment>
  <comment xml:lang="hu">Markdown dokumentum</comment>
  <comment xml:lang="ia">Documento Markdown</comment>
  <comment xml:lang="id">Dokumen markdown</comment>
  <comment xml:lang="it">Documento Markdown</comment>
  <comment xml:lang="ja">Markdown </comment>
  <comment xml:lang="kk">Markdown құжаты</comment>
  <comment xml:lang="ko">마크다운 문서</comment>
  <comment xml:lang="lv">Markdown dokuments</comment>
  <comment xml:lang="nl">Markdown document</comment>
  <comment xml:lang="oc">document Markdown</comment>
  <comment xml:lang="pl">Dokument Markdown</comment>
  <comment xml:lang="pt">documento Markdown</comment>
  <comment xml:lang="pt_BR">Documento Markdown</comment>
  <comment xml:lang="ru">Документ Markdown</comment>
  <comment xml:lang="sk">Dokument Markdown</comment>
  <comment xml:lang="sl">Dokument Markdown</comment>
  <comment xml:lang="sr">Маркдаун документ</comment>
  <comment xml:lang="sv">Markdown-dokument</comment>
  <comment xml:lang="tr">Markdown belgesi</comment>
  <comment xml:lang="uk">документ Markdown</comment>
  <comment xml:lang="zh_CN">Markdown 文档</comment>
  <comment xml:lang="zh_TW">Markdown 文件</comment>
  <sub-class-of type="text/plain"/>
  <glob pattern="*.md"/>
  <glob pattern="*.mkd"/>
  <glob pattern="*.markdown"/>
  <alias type="text/x-markdown"/>
</mime-type>

관련 정보