From 4e4a375fe6cb469d838aff03744eee89cb461f77 Mon Sep 17 00:00:00 2001 From: NexusXe Date: Tue, 29 Mar 2022 01:47:59 -0500 Subject: [PATCH] Fix bizarre enumerated list nonsense (#194) For some reason, Markdown's enumerated lists are awful to deal with. This caused the (1. 2. 3.) list on docs.armbian.com to show up as (1. 1. 1.) This fix doesn't look right on GitHub but *should* render correctly on the site itself. https://stackoverflow.com/a/63226685/12559797 --- docs/Developer-Guide_Building-with-Docker.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Developer-Guide_Building-with-Docker.md b/docs/Developer-Guide_Building-with-Docker.md index 66dee016..e5cada00 100644 --- a/docs/Developer-Guide_Building-with-Docker.md +++ b/docs/Developer-Guide_Building-with-Docker.md @@ -23,15 +23,15 @@ Installation (https://docs.docker.com/engine/install/) There are 3 options to start build process: -1. By passing configuration file name (`config-.conf`), stored in `userpatches` directory, as an argument: +1\. By passing configuration file name (`config-.conf`), stored in `userpatches` directory, as an argument: ``` ./compile.sh docker ``` -2. By passing addtional line arguments to `compile.sh` after `docker`: +2\. By passing addtional line arguments to `compile.sh` after `docker`: ``` ./compile.sh docker KERNEL_ONLY=yes BOARD=cubietruck BRANCH=current KERNEL_CONFIGURE=yes ``` -3. Interactively run inside docker container +3\. Interactively run inside docker container ``` ./compile.sh docker-shell BOARD=rockpi-4a BRANCH=edge RELEASE=focal ```