Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit fe10cf4

Browse files
Merge pull request #5689 from magento/5248-ol-list-prefix-15
Fixed ordered list prefix (MD029) - Group 15
2 parents 4d72cda + 71dfcfb commit fe10cf4

24 files changed

+198
-189
lines changed

_includes/comp-man/backup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To back up:
2222
{:.bs-callout .bs-callout-info}
2323
We strongly recommend you <em>do</em> back up in the event of issues.
2424

25-
2. Wait while backups are created and continue with any of the following:
25+
1. Wait while backups are created and continue with any of the following:
2626

2727
The following page displays to confirm a successful backup.
2828

_includes/config/multi-site_verify.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
Unless you have DNS set up for your stores' URLs, you must add a static route to the host in your `hosts` file:
22

33
1. Locate your operating system's [`hosts` file](https://en.wikipedia.org/wiki/Hosts_(file)#Location_in_the_file_system).
4-
2. Add the static route in the format:
4+
1. Add the static route in the format:
55

6-
<ip address> french.mysite.mg
7-
<ip address> german.mysite.mg
8-
3. Go to one of the following URLs in your browser:
6+
```conf
7+
<ip address> french.mysite.mg
8+
<ip address> german.mysite.mg
9+
```
910

10-
http://mysite.mg/admin
11-
http://french.mysite.mg/frenchstoreview
12-
http://german.mysite.mg/germanstoreview
11+
1. Go to one of the following URLs in your browser:
12+
13+
```http
14+
http://mysite.mg/admin
15+
http://french.mysite.mg/frenchstoreview
16+
http://german.mysite.mg/germanstoreview
17+
```
1318

1419
You're done!
1520

_includes/config/secure-ws-apache_step1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ First, see if you have the Apache `htpasswd` utility is installed as follows:
1212

1313
If a path displays, it is installed; if the command returns no output, `htpasswd` is not installed.
1414

15-
2. If necessary, install `htpasswd`:
15+
1. If necessary, install `htpasswd`:
1616

1717
* Ubuntu: `apt-get -y install apache2-utils`
1818
* CentOS: `yum -y install httpd-tools`

_includes/config/split-db.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
Create checkout and OMS master databases as follows:
44

55
1. Log in to your database server as any user.
6-
2. Enter the following command to get to a MySQL command prompt:
6+
1. Enter the following command to get to a MySQL command prompt:
77

88
```bash
99
mysql -u root -p
1010
```
1111

12-
3. Enter the MySQL `root` user's password when prompted.
13-
4. Enter the following commands in the order shown to create database instances named `magento_quote` and `magento_sales` with the same usernames and passwords:
12+
1. Enter the MySQL `root` user's password when prompted.
13+
1. Enter the following commands in the order shown to create database instances named `magento_quote` and `magento_sales` with the same usernames and passwords:
1414

1515
```shell
1616
create database magento_quote;
@@ -28,9 +28,9 @@ Create checkout and OMS master databases as follows:
2828
GRANT ALL ON magento_sales.* TO magento_sales@localhost IDENTIFIED BY 'magento_sales';
2929
```
3030

31-
5. Enter `exit` to quit the command prompt.
31+
1. Enter `exit` to quit the command prompt.
3232

33-
6. Verify the databases, one at a time:
33+
1. Verify the databases, one at a time:
3434

3535
Checkout database:
3636

_includes/config/split-deploy/example_build-sync.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
To update your build system:
22

33
1. Log in to your build system as, or switch to, the [Magento file system owner](https://glossary.magento.com/magento-file-system-owner).
4-
2. Change to the build system's Magento root directory.
5-
3. Pull the changes to `app/etc/config.php` from source control.
4+
1. Change to the build system's Magento root directory.
5+
1. Pull the changes to `app/etc/config.php` from source control.
66

77
The Git command follows:
88

99
```bash
1010
git pull mconfig m2.2_deploy
1111
```
1212

13-
4. Compile code:
13+
1. Compile code:
1414

1515
```bash
1616
php bin/magento setup:di:compile
1717
```
1818

19-
5. After code has been compiled, generate static view files:
19+
1. After code has been compiled, generate static view files:
2020

2121
```bash
2222
php bin/magento setup:static-content:deploy -f
2323
```
2424

25-
6. Check the changes into source control.
25+
1. Check the changes into source control.
2626

2727
The Git command follows:
2828

_includes/design/icon-fonts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ If you want to add your own icons, each icon will need to be in its own SVG file
22

33
1. Go to [https://icomoon.io/app/](https://icomoon.io/app/) or download this app in Chrome web store.
44

5-
2. Upload your icons in SVG format into the app.
5+
1. Upload your icons in SVG format into the app.
66

7-
3. Specify desired font names and specify the Unicode characters to map the icons. Setting the icons to Private User Area will disable screen-readers or other accessibility tools to read your icon's characters (read "Unicode" section here).
7+
1. Specify desired font names and specify the Unicode characters to map the icons. Setting the icons to Private User Area will disable screen-readers or other accessibility tools to read your icon's characters (read "Unicode" section here).
88

9-
4. Then initialize a download in the app to generate the icon font and [CSS](https://glossary.magento.com/css) style sheet.
9+
1. Then initialize a download in the app to generate the icon font and [CSS](https://glossary.magento.com/css) style sheet.

_includes/install/allowoverrides22.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -10,40 +10,40 @@ Failure to enable these settings typically results in no styles displaying on yo
1010
* Ubuntu: `vim /etc/apache2/sites-available/default`
1111
* CentOS: `vim /etc/httpd/conf/httpd.conf`
1212

13-
2. Locate the block that starts with:
13+
1. Locate the block that starts with:
1414

1515
* Ubuntu 12: `<Directory /var/www/>`
1616
* Ubuntu 14 or CentOS: `<Directory /var/www/html>`
1717

18-
3. Change the value of `AllowOverride` to `<value from Apache site>`.
18+
1. Change the value of `AllowOverride` to `<value from Apache site>`.
1919

20-
An example for Ubuntu 12 follows.
20+
An example for Ubuntu 12 follows.
2121

22-
```conf
23-
<Directory /var/www/>
24-
Options Indexes FollowSymLinks MultiViews
25-
AllowOverride <value from Apache site>
26-
Order allow,deny
27-
Allow from all
28-
<Directory>
29-
```
22+
```conf
23+
<Directory /var/www/>
24+
Options Indexes FollowSymLinks MultiViews
25+
AllowOverride <value from Apache site>
26+
Order allow,deny
27+
Allow from all
28+
<Directory>
29+
```
3030

3131
{:.bs-callout .bs-callout-info}
3232
The preceding values for `Order` might not work in all cases. For more information, see the Apache documentation ([2.2](https://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#order)), [2.4](https://httpd.apache.org/docs/2.4/mod/mod_authz_host.html#order)).
3333

34-
4. Save the file and exit the text editor.
35-
5. *Ubuntu only*. Configure Apache to use the `mod_rewrite` module.
34+
1. Save the file and exit the text editor.
35+
1. *Ubuntu only*. Configure Apache to use the `mod_rewrite` module.
3636

37-
```bash
38-
cd /etc/apache2/mods-enabled
39-
```
37+
```bash
38+
cd /etc/apache2/mods-enabled
39+
```
4040

41-
```bash
42-
ln -s ../mods-available/rewrite.load
43-
```
41+
```bash
42+
ln -s ../mods-available/rewrite.load
43+
```
4444

45-
6. If you changed Apache settings, restart Apache.
45+
1. If you changed Apache settings, restart Apache.
4646

47-
```bash
48-
service apache2 restart
49-
```
47+
```bash
48+
service apache2 restart
49+
```

_includes/install/auth-json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ When choosing token permissions, select all checkboxes in the `repo` scope. Comp
2121
### Create `auth.json` file
2222

2323
1. Log in to your Magento server as the [Magento file system owner]({{ page.baseurl }}/install-gde/prereq/file-sys-perms-over.html).
24-
2. Create the `auth.json` file in the user's home directory. For example, if `magento_user` is your Unix username, then create `/home/magento_user/.composer/auth.json`.
24+
1. Create the `auth.json` file in the user's home directory. For example, if `magento_user` is your Unix username, then create `/home/magento_user/.composer/auth.json`.
2525

2626
### Edit `auth.json` file
2727

_includes/install/auth-tokens-get.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ The `repo.magento.com` repository is where Magento 2 and third-party Composer pa
33
To create authentication keys:
44

55
1. Log in to the [Magento Marketplace](https://marketplace.magento.com){:target="_blank"}. If you don't have an account, click **Register**.
6-
2. Click your account name in the top-right of the page and select **My Profile**.
6+
1. Click your account name in the top-right of the page and select **My Profile**.
77

8-
3. Click **Access Keys** in the Marketplace tab.
8+
1. Click **Access Keys** in the Marketplace tab.
99

1010
![Get your secure access keys on Magento Marketplace]({{ site.baseurl }}/common/images/cloud_access-key.png){:width="500px"}
1111

12-
4. Click **Create a New Access Key**. Enter a specific name for the keys (e.g., the name of the developer receiving the keys) and click **OK**.
12+
1. Click **Create a New Access Key**. Enter a specific name for the keys (e.g., the name of the developer receiving the keys) and click **OK**.
1313

14-
5. New public and private keys are now associated with your account that you can click to copy. Save this information or keep the page open when working with your Magento project. Use the **Public key** as your username and the **Private key** as your password.
14+
1. New public and private keys are now associated with your account that you can click to copy. Save this information or keep the page open when working with your Magento project. Use the **Public key** as your username and the **Private key** as your password.
1515

1616
### Manage your authentication keys
1717

@@ -24,9 +24,9 @@ You can also disable or delete authentication keys. For example, you can disable
2424
You cannot delete or disable keys you created by signing in to your [magento.com account](https://www.magentocommerce.com/products/customer/account/login){:target="_blank"}. To manage those keys:
2525

2626
1. Log in to your [magento.com account](https://www.magentocommerce.com/products/customer/account/login){:target="_blank"}.
27-
2. Click **My Account** at the top of the page.
28-
3. Click **Account Settings** > **Downloads Access Token**.
27+
1. Click **My Account** at the top of the page.
28+
1. Click **Account Settings** > **Downloads Access Token**.
2929

3030
![Access your keys]({{ site.baseurl }}/common/images/connect_keys1.png){:width="200px"}
3131

32-
4. Click **Generate new token** to replace and disable an existing token.
32+
1. Click **Generate new token** to replace and disable an existing token.

_includes/install/composer-clone.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ To install Composer:
1313

1414
1. Change to or create an empty directory on your Magento server.
1515

16-
2. Enter the following commands:
16+
1. Enter the following commands:
1717

18-
```bash
19-
curl -sS https://getcomposer.org/installer | php
20-
```
18+
```bash
19+
curl -sS https://getcomposer.org/installer | php
20+
```
2121

22-
```bash
23-
mv composer.phar /usr/local/bin/composer
24-
```
22+
```bash
23+
mv composer.phar /usr/local/bin/composer
24+
```
2525

2626
For additional installation options, see the [Composer installation documentation](https://getcomposer.org/download/).

_includes/install/file-system-umask.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,33 @@ We recommend changing the umask on a one-user or shared hosting system only. If
77

88
The default umask (with no `magento_umask` specified) is `002`, which means:
99

10-
* 775 for directories, which means full control by the user, full control by the group, and enables everyone to traverse the directory. These permissions are typically required by shared hosting providers.
10+
* 775 for directories, which means full control by the user, full control by the group, and enables everyone to traverse the directory. These permissions are typically required by shared hosting providers.
1111

12-
* 664 for files, which means writable by the user, writable by the group, and read-only for everyone else
12+
* 664 for files, which means writable by the user, writable by the group, and read-only for everyone else
1313

1414
A common suggestion is to use a value of `022` in the `magento_umask` file, which means:
1515

16-
* 755 for directories: full control for the user, and everyone else can traverse directories.
17-
* 644 for files: read-write permissions for the user, and read-only for everyone else.
16+
* 755 for directories: full control for the user, and everyone else can traverse directories.
17+
* 644 for files: read-write permissions for the user, and read-only for everyone else.
1818

1919
To set `magento_umask`:
2020

2121
1. In a command line terminal, log in to your Magento server as a [Magento file system owner][].
22-
2. Navigate to the Magento install directory:
22+
1. Navigate to the Magento install directory:
2323

2424
```bash
2525
cd <Magento install directory>
2626
```
2727

28-
3. Use the following command to create a file named `magento_umask` and write the `umask` value to it.
28+
1. Use the following command to create a file named `magento_umask` and write the `umask` value to it.
2929

3030
```bash
3131
echo <desired umask number> > magento_umask
3232
```
3333

3434
You should now have a file named `magento_umask` in the `<Magento install dir>` with the only content being the `umask` number.
3535

36-
4. Log out and log back in as the [Magento file system owner][] to apply the changes.
36+
1. Log out and log back in as the [Magento file system owner][] to apply the changes.
3737

3838
<!-- Link Definitions -->
3939

_includes/install/flow-diagram.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The diagram shows the following:
99
* [2.2.x system requirements]({{ site.gdeurl22 }}install-gde/system-requirements-tech.html)
1010
* [2.3.x system requirements]({{ site.gdeurl23 }}install-gde/system-requirements-tech.html)
1111

12-
2. Get the Magento software.
12+
1. Get the Magento software.
1313

1414
* For simplicity, get a compressed {{site.data.var.ce}} or {{site.data.var.ee}} [archive]({{ page.baseurl }}/install-gde/prereq/zip_install.html), extract it on your Magento server, and start your installation.
1515

@@ -20,12 +20,12 @@ The diagram shows the following:
2020
{:.bs-callout .bs-callout-info}
2121
To be able to use the Web Setup Wizard to install or upgrade the Magento software, or to manage extensions you get from Magento Marketplace, you must either get a compressed archive or a Composer metapackage. If you clone the GitHub repository, you *cannot* use the Web Setup Wizard to upgrade the Magento software and extensions. You must upgrade using [Composer and Git commands]({{ page.baseurl }}/install-gde/install/cli/dev_options.html).
2222

23-
3. Install the Magento software using either the Web Setup Wizard or command line.
23+
1. Install the Magento software using either the Web Setup Wizard or command line.
2424

2525
For simplicity, only the Web Setup Wizard is shown in the diagram.
2626

2727
At each step, the Web Setup Wizard validates the information you entered. As shown in the preceding diagram, if validation fails, you must manually fix the issues before you proceed.
2828

2929
If the step fails because prerequisite software isn't set up correctly, review our [Prerequisites]({{ page.baseurl }}/install-gde/prereq/prereq-overview.html).
3030

31-
4. Verify the installation by viewing your storefront and the Magento Admin.
31+
1. Verify the installation by viewing your storefront and the Magento Admin.

_includes/install/releasenotes/ce_install_20.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ composer create-project --repository=https://repo.magento.com/ magento/project-c
3535
After you get the Open Source software:
3636

3737
1. [Set file system ownership and permissions]({{ page.baseurl }}/install-gde/prereq/file-system-perms.html).
38-
2. Install the Magento software:
38+
1. Install the Magento software:
3939

4040
* [Web Setup Wizard]({{ page.baseurl }}/install-gde/install/web/install-web.html)
4141
* [Command line]({{ page.baseurl }}/install-gde/install/cli/install-cli.html)

_includes/install/releasenotes/ee_install_20.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ composer create-project --repository=https://repo.magento.com/ magento/project-e
3535
After you get the Commerce software:
3636

3737
1. [Set file system ownership and permissions]({{ page.baseurl }}/install-gde/prereq/file-system-perms.html).
38-
2. Install the Magento software:
38+
1. Install the Magento software:
3939

4040
* [Web Setup Wizard]({{ page.baseurl }}/install-gde/install/web/install-web.html)
4141
* [Command line]({{ page.baseurl }}/install-gde/install/cli/install-cli.html)

_includes/install/releasenotes/get-ce-software_zip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Archives are available in the following formats: `.zip`, `.tar.bz2`, `.tar.gz`
1111
To get the Magento Open Source software archive:
1212

1313
1. Go to [http://magento.com/download](http://magento.com/download){:target="_blank"}.
14-
2. Choose either the software or the software and sample data:
14+
1. Choose either the software or the software and sample data:
1515

1616
* `Magento-CE-<version>.*` (without sample data)
1717
* `Magento-CE-<version>+Samples.*` (with sample data)

0 commit comments

Comments
 (0)