docs: Updates markdown docs (#912)

This commit is contained in:
Kamron Batman 2022-01-03 22:10:29 -08:00 committed by GitHub
parent 08df0307e5
commit 24c683870d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 22 additions and 45 deletions

View file

@ -83,17 +83,25 @@ html .md-footer-meta.md-typeset a:hover {
}
.linuxmint {
color: #87CF3E;
color: #87cF3e;
}
.debian {
color: #d70a53;
}
.fedora {
color: #3c6eb4;
}
.centos {
color: #212078;
}
.redhat {
color: #be0000;
}
.codehilitetable .linenodiv pre, .highlighttable .linenodiv pre {
color: var(--md-default-bg-color);
}

View file

@ -24,7 +24,8 @@ The operating system to build the server against. If not specified then the serv
:fontawesome-brands-windows:{: .windows } `win`<br>
:fontawesome-brands-apple:{: .apple } `osx`<br>
:fontawesome-brands-ubuntu:{: .ubuntu } `ubuntu.14.04` `ubuntu.16.04`, `ubuntu.18.04` `ubuntu.20.04`<br>
:brands-linuxmint:{: .linuxmint } `linuxmint.17` `linuxmint.18`, `linuxmint.19`<br>
:brands-linuxmint:{: .linuxmint } `linuxmint.17` `linuxmint.18`, `linuxmint.19`, `ubuntu.20.04` for v20<br>
:brands-debian:{: .debian } `debian.9`, `debian.10`<br>
:fontawesome-brands-centos:{: .centos } `centos.7`, `centos.8`
:fontawesome-brands-fedora:{: .fedora } `fedora.32`, `fedora.33`, `fedora.34`<br>
:fontawesome-brands-centos:{: .centos } `centos.7`, `centos.8`<br>
:fontawesome-brands-redhat:{: .redhat } `redhat.7`, `redhat.8`

View file

@ -21,14 +21,14 @@ title: Installation
```
=== "OSX"
<h3>Prerequisites</h3>
1. Download and install the latest [.NET 6 SDK](https://dotnet.microsoft.com/download/dotnet/6.0)
### Prerequisites
1. Download and install the latest [.NET 6 SDK](https://dotnet.microsoft.com/download/dotnet/6.0).
1. Using _terminal_, install [homebrew](https://brew.sh) and git:
```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install git
```
<h3>Install ModernUO</h3>
### Install ModernUO
1. Using _terminal_, navigate to the folder where you want to install ModernUO and run:
```bash
git clone https://github.com/modernuo/modernuo
@ -36,8 +36,8 @@ title: Installation
```
=== "Linux"
<h3>Prerequisites</h3>
1. Download and install the latest [.NET 6 SDK](instructions [here](https://docs.microsoft.com/en-us/dotnet/core/install/linux))
### Prerequisites
1. Download and install the latest [.NET 6 SDK](https://docs.microsoft.com/en-us/dotnet/core/install/linux).
1. Using _bash_, install git:
```bash
sudo apt update && sudo apt install git
@ -46,7 +46,7 @@ title: Installation
!!! Note
The command to install git might be different for your flavor of linux. Consult your local Google search for answers.
<h3>Install ModernUO</h3>
### Install ModernUO
1. Using _bash_, navigate to the folder where you want to install ModernUO and run:
```bash
git clone https://github.com/modernuo/modernuo

View file

@ -1,33 +0,0 @@
---
title: Quick Start
---
# Quick Start
If you are familiar with RunUO, then follow these steps to get your ModernUO server running in less than 10 minutes:
=== "Windows"
1. Download and install the [.NET 6 Runtime](https://dotnet.microsoft.com/download/dotnet/6.0)
1. Using [git](https://git-scm.com/downloads), clone the ModernUO repository to a folder.
1. Run publish.cmd
1. Navigate to the _Distribution_ folder.
1. Run `ModernUO.exe`
=== "OSX"
1. Download and install the [.NET 6 Runtime](https://dotnet.microsoft.com/download/dotnet/6.0)
1. Using [git](https://git-scm.com/downloads), clone the ModernUO repository to a folder.
1. Using _terminal_, navigate to the _ModernUO_ folder.
1. Run `./publish.cmd`
1. Using _terminal_, navigate to the _Distribution_ folder.
1. Run `dotnet ModernUO.dll`
=== "Linux"
1. Download and install the [.NET 6 Runtime](https://docs.microsoft.com/en-us/dotnet/core/install/linux)
1. Using [git](https://git-scm.com/downloads), clone the ModernUO repository to a folder.
1. Using _bash_, navigate to the _ModernUO_ folder.
1. Run `./publish.cmd`
1. Using _bash_, navigate to the _Distribution_ folder.
1. Run `dotnet ModernUO.dll`
!!! Note
Follow the rest of the [Get Started](../installation) guide to learn how to connect, configure, and customize, your server.

View file

@ -41,14 +41,16 @@ markdown_extensions:
- admonition
- footnotes
- meta
- markdown.extensions.toc:
- toc:
toc_depth: "1-1"
permalink: true
- attr_list
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.tabbed
- pymdownx.tabbed:
alternate_style: true
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
@ -67,6 +69,5 @@ markdown_extensions:
nav:
- Home: 'index.md'
- 'Get Started':
- 'quick-start.md'
- 'installation.md'
- 'building-server.md'