Tutorial VIII: HTML
Quick note on highlighting that Markdown supports raw HTML. That means that if for some reason Markdown falls short or becomes inconvenient for a thing you are authoring, you can always use HTML as a fallback solution. One very common scenario is customizing the width and height of your images.
You can check the source code of the editing content post to see how I moved from the standard syntax for images using ![alt text](image path)
to use HTML to allow to set up a custom width using a CSS style.
<div style="text-align:right; margin: 20px 0">
<p>
Another example could be to
<span style="color:red">change text color</span>.
</p>
</div>
Another example could be to change text color.
Easy right? 😀