From 7dd53d1e329657b947db4159d58fbd554abcadc4 Mon Sep 17 00:00:00 2001 From: mik-tf Date: Tue, 22 Oct 2024 23:53:06 -0400 Subject: [PATCH] new --- docs/mdbook_basics.md | 42 ++++++++++++++++++------------------------ 1 file changed, 18 insertions(+), 24 deletions(-) diff --git a/docs/mdbook_basics.md b/docs/mdbook_basics.md index 28435af..a0b4176 100644 --- a/docs/mdbook_basics.md +++ b/docs/mdbook_basics.md @@ -6,8 +6,6 @@ - [Installation](#installation) - [MacOS or Linux](#macos-or-linux) - [Windows](#windows) - - [Install Chocolatey](#install-chocolatey) - - [Install Mdbook](#install-mdbook) - [Create a New Mdbook](#create-a-new-mdbook) - [More Information](#more-information) @@ -36,30 +34,27 @@ We introduce Mdbook and Hero Mdbook. ### Windows -#### Install Chocolatey +- Install Chocolatey + - To install Chocolatey on Windows, we follow the [official Chocolatey website](https://chocolatey.org/install) instructions. -To install Chocolatey on Windows, we follow the [official Chocolatey website](https://chocolatey.org/install) instructions. - -* Run PowerShell as Administrator -* Check if **Get-ExecutionPolicy** is restricted - * ``` - Get-ExecutionPolicy - ``` - * If it is restricted, run the following command: + * Run PowerShell as Administrator + * Check if **Get-ExecutionPolicy** is restricted * ``` - Set-ExecutionPolicy AllSigned + Get-ExecutionPolicy ``` -* Install Chocolatey - * ``` - Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) + * If it is restricted, run the following command: + * ``` + Set-ExecutionPolicy AllSigned + ``` + * Install Chocolatey + * ``` + Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) + ``` + * Note: You might need to restart PowerShell to use Chocolatey +- Install Mdbook + - ``` + choco install mdbook ``` -* Note: You might need to restart PowerShell to use Chocolatey - -#### Install Mdbook - -``` -choco install mdbook -``` ## Create a New Mdbook @@ -78,7 +73,6 @@ choco install mdbook ## More Information -- Update an mdbook on a GitHub repo - - https://manual.grid.tf/knowledge_base/collaboration/contribute.html +- [Update an mdbook on a GitHub repo](https://manual.grid.tf/knowledge_base/collaboration/contribute.html) - [Deploy a Hero Mdbook on Docker](./hero_mdbook_docker.md) - [Create a Hero Mdbook](./hero_create_mdbook.md) \ No newline at end of file -- 2.40.1