Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zzossig/hugo-theme-zzo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzzossig <zzossig@gmail.com>2020-01-23 20:46:03 +0300
committerzzossig <zzossig@gmail.com>2020-01-23 20:46:03 +0300
commitd314aa4f85ded5f3bad000e70e98a7bcf964303c (patch)
treed7b0303ea6291c281ba0e9d7a0cb6e74ed5aabc0 /README.ko.md
parent541bbd576d1c228a8adfbe795416166edf7013fe (diff)
tabs shortcode added
Diffstat (limited to 'README.ko.md')
-rw-r--r--README.ko.md30
1 files changed, 29 insertions, 1 deletions
diff --git a/README.ko.md b/README.ko.md
index 2d59802..e06af4a 100644
--- a/README.ko.md
+++ b/README.ko.md
@@ -1056,7 +1056,7 @@ Some markdown contents
{{< /boxmd >}}
```
-### code / codes => Tabbed code-block. indentation matters.
+### code / codes => 코드를 여러 버전으로 제공할 때 쓰세요. 들여쓰기 잘못하면 이상하게 나와요.
`````
{{< codes java javascript >}}
@@ -1071,4 +1071,32 @@ Some markdown contents
```
{{< /code >}}
{{< /codes >}}
+`````
+
+### tab / tabs => 여러 버전의 뷰를 제공할 때 쓰세요
+
+`````
+{{< tabs Windows MacOS Ubuntu >}}
+ {{< tab >}}
+
+ ### Windows section
+
+ ```javascript
+ console.log('Hello World!');
+ ```
+
+ {{< /tab >}}
+ {{< tab >}}
+
+ ### MacOS section
+
+ Hello world!
+ {{< /tab >}}
+ {{< tab >}}
+
+ ### Ubuntu section
+
+ Great!
+ {{< /tab >}}
+{{< /tabs >}}
````` \ No newline at end of file