list.adoc 2.25 KB
Newer Older
heywon.choi's avatar
heywon.choi committed
1 2 3
= List Sample
Gildong Hong <email1@bwg.com>
:description: The document's description. This document is about the list sample.
heywon.choi's avatar
heywon.choi committed
4 5
include::../attributes/common_attrs.adoc[]
include::../attributes/dir_attrs.adoc[]
heywon.choi's avatar
heywon.choi committed
6 7 8 9 10 11 12 13 14

[abstract]
.문서개요
--
This document has a header that specifies the {doctitle}.
This document is about the list.
--

== 순서가 있는 목록
heywon.choi's avatar
heywon.choi committed
15
----
heywon.choi's avatar
heywon.choi committed
16 17 18 19 20
.목록의 제목
. Protons
. Electrons
. Neutrons

heywon.choi's avatar
heywon.choi committed
21 22 23 24 25
////
새 리스트를 시작하는 방법: 
두 번째 리스트 위에 블록 속성([]) 행(빈 행도 포함)을 배치하고 빈 행으로 간격띄우기
////

heywon.choi's avatar
heywon.choi committed
26 27 28 29 30 31 32
[]
.새 목록
. Step 1
. Step 2
.. Step 2a
.. Step 2b
. Step 3
heywon.choi's avatar
heywon.choi committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
----

* 결과

====
.목록의 제목
. Protons
. Electrons
. Neutrons

[]
.새 목록 제목
. Step 1
. Step 2
.. Step 2a
.. Step 2b
. Step 3
====
heywon.choi's avatar
heywon.choi committed
51 52

== 순서가 없는 목록
heywon.choi's avatar
heywon.choi committed
53
----
heywon.choi's avatar
heywon.choi committed
54 55 56 57 58 59 60 61
.제목
* Level 1 list item
** Level 2 list item
*** Level 3 list item
**** Level 4 list item
***** Level 5 list item
****** etc.
* Level 1 list item
heywon.choi's avatar
heywon.choi committed
62 63
----
* 결과
heywon.choi's avatar
heywon.choi committed
64

heywon.choi's avatar
heywon.choi committed
65 66 67 68 69 70 71 72 73 74
====
.제목
* Level 1 list item
** Level 2 list item
*** Level 3 list item
**** Level 4 list item
***** Level 5 list item
****** etc.
* Level 1 list item
====
heywon.choi's avatar
heywon.choi committed
75 76

== 체크리스트
heywon.choi's avatar
heywon.choi committed
77
----
heywon.choi's avatar
heywon.choi committed
78 79 80
* [x] checked
* [ ] not checked
* normal list item
heywon.choi's avatar
heywon.choi committed
81 82 83
----

* 결과
heywon.choi's avatar
heywon.choi committed
84

heywon.choi's avatar
heywon.choi committed
85
====
heywon.choi's avatar
heywon.choi committed
86 87 88
* [x] checked
* [ ] not checked
* normal list item
heywon.choi's avatar
heywon.choi committed
89
====
heywon.choi's avatar
heywon.choi committed
90 91 92

== 설명 목록
=== 기본
heywon.choi's avatar
heywon.choi committed
93 94 95 96 97 98 99 100
----
[horizontal]
RAM:: Temporarily stores information the CPU uses during operation.
Keyboard:: Used to enter text or control items on the screen.
----

* 결과

heywon.choi's avatar
heywon.choi committed
101 102 103 104 105 106 107
====
[horizontal]
RAM:: Temporarily stores information the CPU uses during operation.
Keyboard:: Used to enter text or control items on the screen.
====

=== 혼합
heywon.choi's avatar
heywon.choi committed
108 109 110 111 112 113 114 115 116 117
----
Dairy::
* Milk
* Eggs
Bakery::
* Bread
----

* 결과

heywon.choi's avatar
heywon.choi committed
118 119 120 121 122 123 124 125 126
====
Dairy::
* Milk
* Eggs
Bakery::
* Bread
====

=== 중첩
heywon.choi's avatar
heywon.choi committed
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
----
Operating Systems::
  Linux:::
    . Fedora
      * Desktop
    . Ubuntu
      * Desktop
      * Server
  BSD:::
    . FreeBSD
    . NetBSD

Cloud Providers::
  PaaS:::
    . OpenShift
    . CloudBees
  IaaS:::
    . Amazon EC2
    . Rackspace
----

* 결과

heywon.choi's avatar
heywon.choi committed
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
====
Operating Systems::
  Linux:::
    . Fedora
      * Desktop
    . Ubuntu
      * Desktop
      * Server
  BSD:::
    . FreeBSD
    . NetBSD

Cloud Providers::
  PaaS:::
    . OpenShift
    . CloudBees
  IaaS:::
    . Amazon EC2
    . Rackspace
====