Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a built-in markdown flavor for Firefox?

Tags:

I like to use markdown languages like GitHub markdown and ASCIIDoc to provide lightweight formatting to text documents. The tags in HTML are too heavy and render the original text almost unreadable.

The problem is when I send documents to other users. They can't be bothered with installing a markdown plugin. I would like to use a markdown flavor that will render predictably in web browsers. That way I can send a URL for my document and the recipient will see the formatted text.

Is there a standard markdown language built into Firefox?

Thanks,

(PS: this is a serious question. Pedants please restrain yourselves.)

like image 673
Pedro_Uno Avatar asked Nov 02 '18 16:11

Pedro_Uno


People also ask

Can browsers display Markdown?

Markdown applications use something called a Markdown processor (also commonly referred to as a “parser” or an “implementation”) to take the Markdown-formatted text and output it to HTML format. At that point, your document can be viewed in a web browser or combined with a style sheet and printed.


1 Answers

Unfortunately, at the moment, there are no major web browsers that natively support parsing and rendering markdown. However, there are a few solutions.

  1. Render the markdown to html and send the html document. Most renderers automatically include Stylesheets that make the html look good, or you can edit the output or templates yourself.

  2. Get the recepent to install a extension that will render the markdown. I quickly found something by googling firefox markdown extension.

I hope this solved your problem.

like image 50
Joel Ellis Avatar answered Oct 14 '22 09:10

Joel Ellis