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-22 11:31:10 +0300
committerzzossig <zzossig@gmail.com>2020-01-22 11:31:10 +0300
commitdcbc16a5625e1781bf356757f106b20db4e039f3 (patch)
tree3f50d627d298689926204c01bdbacc13271160dc /README.ko.md
parent15f467377e3ac1d427fc61527abe3c54c079fb33 (diff)
code-tab added, outer toc bug fix, grid ui bux fix
Diffstat (limited to 'README.ko.md')
-rw-r--r--README.ko.md27
1 files changed, 26 insertions, 1 deletions
diff --git a/README.ko.md b/README.ko.md
index 22cec9f..6e0a353 100644
--- a/README.ko.md
+++ b/README.ko.md
@@ -1040,6 +1040,31 @@ A notice disclaimer
```bash
{{< box >}}
-Some markdown contents
+Some contents
{{< /box >}}
```
+
+### boxmd
+
+```bash
+{{< boxmd >}}
+Some markdown contents
+{{< /boxmd >}}
+```
+
+### code / codes => Tabbed code-block. indentation matters.
+
+```bash
+{{< codes java javascript >}}
+ {{< code >}}
+ ```java
+ System.out.println('Hello World!');
+ ```
+ {{< /code >}}
+ {{< code >}}
+ ```javascript
+ console.log('Hello World!');
+ ```
+ {{< /code >}}
+{{< /codes >}}
+``` \ No newline at end of file