docs: Update to latest GitHub Markdown syntax changes

This commit is contained in:
oSumAtrIX 2023-12-01 01:12:26 +01:00 committed by GitHub
parent 06c6a97915
commit 5e089ea9af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,39 +34,39 @@ ReVanced CLI is divided into the following fundamental commands:
revanced-patches.jar [<patch-bundle> ...] revanced-patches.jar [<patch-bundle> ...]
``` ```
> [!NOTE] > [!NOTE]
> A default `options.json` file will be automatically created, if it does not exist > A default `options.json` file will be automatically created, if it does not exist
without any need for intervention when using the `patch` command. without any need for intervention when using the `patch` command.
- ### 💉 Patch an app - ### 💉 Patch an app
You can patch apps by supplying patch bundles and the app to patch. You can patch apps by supplying patch bundles and the app to patch.
After patching, ReVanced CLI can install the patched app on your device using two methods: After patching, ReVanced CLI can install the patched app on your device using two methods:
> [!NOTE] > [!NOTE]
> For ReVanced CLI to be able to install the patched app on your device, make sure ADB is working: > For ReVanced CLI to be able to install the patched app on your device, make sure ADB is working:
> >
> ```bash > ```bash
> adb shell exit > adb shell exit
> ``` > ```
> >
> To get your device's serial, run the following command: > To get your device's serial, run the following command:
> >
> ```bash > ```bash
> adb devices > adb devices
> ``` > ```
> >
> If you want to mount the patched app on top of the un-patched app, make sure you have root permissions: > If you want to mount the patched app on top of the un-patched app, make sure you have root permissions:
> >
> ```bash > ```bash
> adb shell su -c exit > adb shell su -c exit
> ``` > ```
> >
> [!WARNING] > [!WARNING]
> Some patches may require integrations > Some patches may require integrations
> such as [ReVanced Integrations](https://github.com/revanced/revanced-integrations). > such as [ReVanced Integrations](https://github.com/revanced/revanced-integrations).
> Supply them with the option `--merge`. ReVanced Patcher will automatically determine if they are necessary. > Supply them with the option `--merge`. ReVanced Patcher will automatically determine if they are necessary.
- #### 👾 Patch an app and install it on your device regularly - #### 👾 Patch an app and install it on your device regularly
@ -119,9 +119,9 @@ ReVanced CLI is divided into the following fundamental commands:
[<device-serial>] [<device-serial>]
``` ```
> [!NOTE] > [!NOTE]
> You can unmount an APK file > You can unmount an APK file
by adding the option `--unmount`. by adding the option `--unmount`.
- ### 📦 Install an app - ### 📦 Install an app
@ -131,6 +131,6 @@ ReVanced CLI is divided into the following fundamental commands:
[<device-serial>] [<device-serial>]
``` ```
> [!NOTE] > [!NOTE]
> You can mount an APK file > You can mount an APK file
> by supplying the package name of the app to mount the supplied APK file to over the option `--mount`. > by supplying the package name of the app to mount the supplied APK file to over the option `--mount`.