From ec0b6813249f36e2194069a4c3365de51423053b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ond=C5=99ej=20Budai?= <ondrej@budai.cz>
Date: Sat, 1 Jun 2019 12:38:42 +0000
Subject: [PATCH] Fix badly rendered code blocks in JavaScript styleguide

---
 doc/development/fe_guide/style_guide_js.md | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/doc/development/fe_guide/style_guide_js.md b/doc/development/fe_guide/style_guide_js.md
index 94dfdbdd07376..b50159c2b7556 100644
--- a/doc/development/fe_guide/style_guide_js.md
+++ b/doc/development/fe_guide/style_guide_js.md
@@ -95,6 +95,7 @@ See [our current .eslintrc](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/
 #### Modules, Imports, and Exports
 
 1. Use ES module syntax to import modules
+
     ```javascript
       // bad
       const SomeClass = require('some_class');
@@ -168,6 +169,7 @@ See [our current .eslintrc](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/
    Do not use them anymore and feel free to remove them when refactoring legacy code.
 
 1. Avoid adding to the global namespace.
+
     ```javascript
       // bad
       window.MyClass = class { /* ... */ };
@@ -176,7 +178,8 @@ See [our current .eslintrc](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/
       export default class MyClass { /* ... */ }
     ```
 
-1. Side effects are forbidden in any script which contains exports
+1. Side effects are forbidden in any script which contains export
+
     ```javascript
       // bad
       export default class MyClass { /* ... */ }
@@ -449,6 +452,7 @@ Please check this [rules][eslint-plugin-vue-rules] for more documentation.
 #### Props
 
 1. Props should be declared as an object
+
     ```javascript
       // bad
       props: ['foo']
-- 
GitLab