Another post - Markdown Syntax II

Posted:   January 09, 2020

Status:   Completed

Tags :   markdown javascript

Categories :   sample post

Were equations, pictures or diagrams not properly rendered, please refresh the page. If the problem persists, you can contact me.

Coding section styles

For inline code blocks, you can wrap them in backticks: var example = true.
If you’ve got a longer block of code, you can indent with four spaces:

if (isAwesome){
  return true
}

Or in another way, by usring `’s, you can achieve the same thing:

if (isAwesome){
  return true
}

To use the syntax highlighting, you can include the language:

if (isAwesome){
  return true
}