Mardown Formatting and Syntax Highlighting
Eric Dequevedo

Eric Dequevedo @eric_dequ

About: Hello, I'm Eric deQuevedo, or Ric. I enjoy studying the Art of Science, and the Science of Art. I am the author of the Robot Ric And Founder Of Quantum Cyber Solutions

Location:
Orlando Florida
Joined:
Jun 27, 2024

Mardown Formatting and Syntax Highlighting

Publish Date: Jun 28 '24
0 0

A sample post with markdown.

Inline Highlighting

Sample of inline highlighting sum = parseInt(num1) + parseInt(num2)

Markdown Features with Examples 🚀

Here are a ton of cool Markdown features and formatting that you can use to make your text more readable and visually appealing:

  • Bold text: **bold**bold
  • Italic text: *italic*italic
  • Code blocks: `code`code
  • Lists: - list item
    • list item
  • Links: LinksLinks
  • Images: ImagesImages
  • Tables:
Header 1 Header 2
Cell 1 Cell 2
  • Strikethrough text: ~~strikethrough~~strikethrough
  • Superscript text: H^2^O → H<sup>2</sup>O
  • Subscript text: H~2~O → H<sub>2</sub>O
  • Emoji: :smile: → 😄

You can also use Markdown to create custom formatting, such as:

  • > Blockquotes: &gt; Blockquotes → > Blockquotes
  • ## Horizontal rules: --- or ***
  • Definition lists:
    Term
    : Definition

  • Ordered lists: 1. Ordered list item

    1. Ordered list item
  • Unordered lists: - Unordered list item

    • Unordered list item
graph TD
  A[Web Application]
  B[Database]
  C[API]
  D[Load Balancer]
  A--&gt;D
  D--&gt;B
  D--&gt;C
Enter fullscreen mode Exit fullscreen mode

Markdown is a powerful tool that can be used to create formatted text that is both readable and visually appealing. By learning the basics of Markdown, you can improve the readability of your text and make it more engaging for your readers.

Comments 0 total

    Add comment