"Assumption is the mother of all mistakes."
-Eugene Lewis Fordsworthe
Hello readers, In response to the upcoming release of our new editor option, I decided to discuss 'markdown' - a topic that several of our users may not be familiar with. When we first announced the development of a new editor supporting markdown, I wrongly assumed that everyone was already acquainted with it. This article will help you understand the key features of markdown and, who knows, you might end up being an early adopter of our new editor!
Markdown is a tool that allows you to create formatted content using plain text. It is essentially a set of rules that interpret certain special characters in text to present it as HTML. You've likely noticed it when people enclose words with asterisks to emphasize them. With markdown, words surrounded by asterisks actually appear italicized. A word enclosed by double asterisks, **bold**, for instance, will be bold.
Another clear illustration of markdown syntax is the numbered list:Don't quote me on this, but this markdown stuff is very convenient!You can use hashmarks "#" to create headings. The more hashmarks you add, the smaller the heading. So, "#" creates:
[visible text](//link-to-a-site.com)
Alternatively, you can highlight text in the editor and a pop-up with a link icon on the far right will also convert text into clickable hyperlinks.
Images follow a similar syntax: ![caption goes here](//cdn.gzht888.com/images/ckr-3-vyhp-000040-as-6-byan-6-x-08.jpg)
It just starts with an exclamation mark (!). The caption appears in small italic font under the image and is also set as the alt
property on the img
tag for better accessibility. Currently, the image uploader modal is missing from this editor, so you'll need to find your image URLs yourself. You can also insert an image from your machine by dragging and dropping it right into the editor.
One special bit of syntax that is supported, but isn't strictly markdown, is ==two equals signs==
.
This will highlight the text in green. Fun! 🎈