LuxDev Markdown Language Class

Published: (January 16, 2026 at 04:31 PM EST)
1 min read
Source: Dev.to

Source: Dev.to

How to write using markdown language

Headers

  • # sign makes the text a title
  • ## (two hash signs) make the text a subtitle
  • ### (three hash signs) make it a subsection under a subtitle

Text formatting

To highlight a word in a text bold and italics you use asterisks before and after the text you want. Two stars for bold, one star for italics.

Lists

  • Using hyphen creates a list item

Code blocks

Add a block of code using triple backticks:

name -"Gloria"
"yellow"

Visit my LinkedIn account on

Images

Click on the picture icon at the top.

Markdown tutorial image

Back to Blog

Related posts

Read more »

Jekyll 블로그에 Mermaid 다이어그램 추가하기

기술 블로그를 운영하다 보면 아키텍처, 플로우차트, 시퀀스 다이어그램 등을 그려야 할 때가 많습니다. 이미지 파일을 별도로 만들어 첨부하는 방식은 번거롭고 수정도 어렵습니다. Mermaid.js를 사용하면 마크다운 코드 블록 안에서 텍스트로 다이어그램을 정의하고 자동으로 렌더링할 수 있...