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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2019-01-11 14:48:37 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2019-01-11 14:48:37 +0300
commita45c2236067314b83722e03dd26755a789d5e14e (patch)
tree2357b2c00b25931c72943fcc51f18b0395577752
parenta0f77090854b3510543dc42529d7353adab03da0 (diff)
Fix indentation and markup for Markdown codeblock
-rw-r--r--doc/development/documentation/styleguide.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/development/documentation/styleguide.md b/doc/development/documentation/styleguide.md
index 721e26f2de9..15363b4750c 100644
--- a/doc/development/documentation/styleguide.md
+++ b/doc/development/documentation/styleguide.md
@@ -272,19 +272,19 @@ Inside the document:
- For regular code blocks, always use a highlighting class corresponding to the
language for better readability. Examples:
- ```md
- ```ruby
- Ruby code
- ```
-
- ```js
- JavaScript code
- ```
-
- ```md
- Markdown code
- ```
- ```
+ ````md
+ ```ruby
+ Ruby code
+ ```
+
+ ```js
+ JavaScript code
+ ```
+
+ ```md
+ Markdown code
+ ```
+ ````
- For a complete reference on code blocks, check the [Kramdown guide](https://about.gitlab.com/handbook/product/technical-writing/markdown-guide/#code-blocks).