मुझे मैन्युअल रूप से अपना संपादन करना था ~/.mozilla/firefox/<PROFILE>/mimeTypes.rdf
। ऐडऑन की यह समीक्षा कहती है:
लिनक्स उपयोगकर्ताओं के लिए, .mozilla / * में "md" जोड़ने का प्रयास करें। डिफ़ॉल्ट / mimeTypes.rdf इस पंक्ति को: mdin text / plain अनुभाग :)
हम्म। मुझे एक text/plain
अनुभाग नहीं मिला , लेकिन मैंने पाया कि यह पृष्ठ सहायक है:
यदि 'टेक्स्ट / प्लेन' के लिए अभी तक कोई मौजूदा RDF नोड नहीं है, तो इसे जोड़ें, और फ़ाइल एक्सटेंशन के रूप में "md" जोड़ें।
<RDF:Description RDF:about="urn:mimetype:text/plain"
NC:value="text/plain"
NC:fileExtensions="md"
NC:description="Text Document">
<NC:handlerProp RDF:resource="urn:mimetype:handler:text/plain"/>
</RDF:Description>
हालाँकि, मैंने जो किया, वह था:
<RDF:Description RDF:about="urn:mimetype:text/plain; charset=utf8"
NC:value="text/plain; charset=utf8"
NC:handleInternal="true"
NC:description="Markdown Document">
<NC:fileExtensions>md</NC:fileExtensions>
<NC:fileExtensions>mkd</NC:fileExtensions>
<NC:fileExtensions>mdown</NC:fileExtensions>
<NC:fileExtensions>markdown</NC:fileExtensions>
<NC:handlerProp RDF:resource="urn:mimetype:handler:text/plain; charset=utf8"/>
</RDF:Description>
ऐसा लग रहा था NC:handInternal="true"
कि इसने चाल चली। दिलचस्प है, ऐसा लगता है कि यह text/markdown
या text/x-markdown
MIME प्रकारों के साथ काम नहीं करता है । charset=utf8
क्योंकि मैं यूनिकोड में मेरे सभी Makefiles बारे में है।