summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2017-09-22 13:18:23 +0000
committerAchilleas Pipinellis <axil@gitlab.com>2017-09-22 13:18:23 +0000
commitf9df0e13e3224e90dcddded6d8ae4f1eabc3b6db (patch)
treec1218993002c1a50150b37bc1a5f560a93fc0820
parent604f176bf8b23c5658348f875d40495f5640ce7d (diff)
parentf72144fd925433e7771c466238b5ddcf84aecc15 (diff)
downloadgitlab-ce-f9df0e13e3224e90dcddded6d8ae4f1eabc3b6db.tar.gz
Merge branch 'jej/demonstrate-details-summary' into 'master'
Demonstrate <details> and <summary> tags in doc/user/markdown.md See merge request gitlab-org/gitlab-ce!14247
-rw-r--r--doc/user/markdown.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/user/markdown.md b/doc/user/markdown.md
index b42b8f0a525..454988b9b80 100644
--- a/doc/user/markdown.md
+++ b/doc/user/markdown.md
@@ -596,6 +596,30 @@ See the documentation for HTML::Pipeline's [SanitizationFilter](http://www.rubyd
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
</dl>
+#### Details and Summary
+
+Content can be collapsed using HTML's [`<details>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details) and [`<summary>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary) tags. This is especially useful for collapsing long logs so they take up less screen space.
+
+<p>
+<details>
+<summary>Click me to collapse/fold.</summary>
+These details will remain hidden until expanded.
+
+<pre><code>PASTE LOGS HERE</code></pre>
+</details>
+</p>
+
+**Note:** Unfortunately Markdown is not supported inside these tags, as described by the [markdown specification](https://daringfireball.net/projects/markdown/syntax#html). You can work around this by using HTML, for example you can use `<pre><code>` tags instead of [code fences](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/user/markdown.md#code-and-syntax-highlighting).
+
+```html
+<details>
+<summary>Click me to collapse/fold.</summary>
+These details will remain hidden until expanded.
+
+<pre><code>PASTE LOGS HERE</code></pre>
+</details>
+```
+
### Horizontal Rule
```