Skip to content

Commit a2fba70

Browse files
authored
Formatting
1 parent 4f87bf0 commit a2fba70

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

docs/getting-started.md

+16-6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Make sure that you have the following software installed and configured on your
1818
<div class="bs-callout bs-callout-tip" markdown="1">
1919
[PhpStorm] supports [Codeception test execution][], which is helpful when debugging.
2020
</div>
21+
2122
## Install Magento {#install-magento}
2223

2324
Use instructions below to install Magento.
@@ -67,14 +68,17 @@ To disable the WYSIWYG and enable the web driver to process these fields as simp
6768
3. In the WYSIWYG Options section set the **Enable WYSIWYG Editor** option to **Disabled Completely**.
6869
4. Click **Save Config**.
6970

70-
or via command line
71-
1. `bin/magento config:set cms/wysiwyg/enabled disabled`
71+
or via command line:
72+
73+
```bash
74+
bin/magento config:set cms/wysiwyg/enabled disabled
75+
```
7276

7377
<div class="bs-callout bs-callout-tip">
7478
When you want to test the WYSIWYG functionality, re-enable WYSIWYG in your test suite.
7579
</div>
7680

77-
### Security settings {#security-settings}
81+
### Security settings {#security-settings}
7882

7983
To enable the **Admin Account Sharing** setting, to avoid unpredictable logout during a testing session, and disable the **Add Secret Key in URLs** setting, to open pages using direct URLs:
8084

@@ -83,9 +87,15 @@ To enable the **Admin Account Sharing** setting, to avoid unpredictable logout d
8387
3. Set **Add Secret Key to URLs** to **No**.
8488
4. Click **Save Config**.
8589

86-
or via command line
87-
1. `bin/magento config:set admin/security/admin_account_sharing 1`
88-
2. `bin/magento config:set admin/security/use_form_key 0`
90+
or via command line:
91+
92+
```bash
93+
bin/magento config:set admin/security/admin_account_sharing 1
94+
```
95+
96+
```bash
97+
bin/magento config:set admin/security/use_form_key 0
98+
```
8999

90100
### Nginx settings {#nginx-settings}
91101

0 commit comments

Comments
 (0)