Skip to content
On this page

설명 추가하기

마크다운 블록

마크다운을 활용해 내부 사용자에게 안내할 내용을 작성할 수 있습니다.

yaml
- path: guide
  blocks:
  - type: markdown
    content: >
      1.  List item one.

          List item one continued with a second paragraph followed by an
          Indented block.

              $ ls *.sh
              $ mv *.sh ~/tmp

          List item continued with a third paragraph.

      2.  List item two continued with an open block.

          This paragraph is part of the preceding list item.

          1. This list is nested and does not require explicit item continuation.

             This paragraph is part of the preceding list item.

          2. List item b.

             This paragraph belongs to item two of the outer list.

FAQ

마크다운과 쿼리를 같이 표시할 수 있나요?

A. 네. 블록을 두개 추가하면 됩니다.

yaml
pages:
- path: guide
  blocks:
  - type: markdown
    content: >
      ## 제목입니다.

      > 내용
  - type: query
    resource: mysql.qa
    sqlType: select
    sql: SELECT * FROM properties ORDER BY id ASC LIMIT 100