diff --git a/docs/authentication.md b/docs/authentication.md
index a49ad0a..083b503 100644
--- a/docs/authentication.md
+++ b/docs/authentication.md
@@ -1,9 +1,9 @@
# Authentication
-> **Note**
+> **Note**
> The following page is based on version `1.0.0` of BrickTracker.
-> **Warning**
+> **Warning**
> This is a lightweight access control feature and does not provide any strong layer of security to the application.
By default, every feature of the application is available.
@@ -15,7 +15,7 @@ To set up the authentication, you need to set the two following environment vari
- `BK_AUTHENTICATION_KEY`: a secret for the server to encrypt the session cookie. See [.env.sample](../.env.sample) for how to generate the value
- `BK_AUTHENTICATION_PASSWORD`: the actual password
-> **Warning**
+> **Warning**
> The password is stored in **plaintext**. Be mindful.
Once the authentication is set up, you should see a ![read-only](images/authentication-01.png) pill on the right side of the menu bar.
diff --git a/docs/bricktracker.md b/docs/bricktracker.md
index 9792f98..a5789be 100644
--- a/docs/bricktracker.md
+++ b/docs/bricktracker.md
@@ -1,6 +1,6 @@
# BrickTracker
-> **Note**
+> **Note**
> The following page is based on version `1.0.0` of BrickTracker.
## Frontpage
@@ -14,7 +14,7 @@ You can click the card name or image to access a set or minifigure detail.
## Sets
-> **Info**
+> **Info**
> This does not do any pagination and loads **everything**. It can be slow depending on how many sets you have.
![](images/bricktracker-02.png)
@@ -66,7 +66,7 @@ If an error occur, it will put back in the input field the list of number that w
## Parts
-> **Info**
+> **Info**
> This does not do any pagination and loads **everything**. It can be slow depending on how many sets you have.
![](images/bricktracker-06.png)
@@ -79,7 +79,7 @@ Clicking on a part name will load its details.
## Missing (parts)
-> **Info**
+> **Info**
> This does not do any pagination and loads **everything**. It can be slow depending on how missing parts you have.
![](images/bricktracker-07.png)
@@ -92,7 +92,7 @@ Clicking on a part name will load its details.
## Minifigures
-> **Info**
+> **Info**
> This does not do any pagination and loads **everything**. It can be slow depending on how many minifigures you have.
![](images/bricktracker-08.png)
@@ -105,7 +105,7 @@ Clicking on a minifigure name will load its details.
## Instructions
-> **Info**
+> **Info**
> This does not do any pagination and loads **everything**. It can be slow depending on how many instructions you have.
![](images/bricktracker-08.png)
@@ -118,7 +118,7 @@ Clicking on a set image will open it fullscreen.
## Wishlist
-> **Info**
+> **Info**
> This does not do any pagination and loads **everything**. It can be slow depending on how many wished sets you have.
![](images/bricktracker-12.png)
diff --git a/docs/common-errors.md b/docs/common-errors.md
index 91ebb49..cdf5463 100644
--- a/docs/common-errors.md
+++ b/docs/common-errors.md
@@ -1,6 +1,6 @@
# Common errors/problems
-> **Note**
+> **Note**
> The following page is based on version `1.0.0` of BrickTracker.
## I need a password to access some pages
@@ -36,7 +36,7 @@ services:
env_file: ".env"
```
-> **Warning**
+> **Warning**
> Do not use quotes (", ') around your environment variables.
> Docker will interpret them has being part of the **value** of the environment variable.
> For instance...
diff --git a/docs/development.md b/docs/development.md
index 752b4ba..19ee454 100644
--- a/docs/development.md
+++ b/docs/development.md
@@ -1,6 +1,6 @@
# Development
-> **Note**
+> **Note**
> The following page is based on version `1.0.0` of BrickTracker.
The application is written in Python version 3.
diff --git a/docs/first-steps.md b/docs/first-steps.md
index b1e625e..162854b 100644
--- a/docs/first-steps.md
+++ b/docs/first-steps.md
@@ -1,6 +1,6 @@
# First steps
-> **Note**
+> **Note**
> The following page is based on version `1.0.0` of BrickTracker.
## Database initialization
@@ -35,10 +35,10 @@ If everything went well you should see no more error message and some counters.
## Add a set
-> **Important**
+> **Important**
> Make sure you have set up your Rebrickable API key (`BK_REBRICKABLE_KEY`) for this to work (see [common errors](common-errors.md)).
-> **Important**
+> **Important**
> If you are using the CORS allowed origin restriction (`BK_DOMAIN_NAME`), make sure it is matching your application URL (see [common errors](common-errors.md)).
Use the menu bar to navigate to the **Add** page, make sure the socket is in a **connected** state.
@@ -55,7 +55,7 @@ It will load information about the set you are about to add, but not add it yet.
Use the **Confirm add** button to add the set, or the **Dismiss** button if it is not the one you wanted.
-> **Note**
+> **Note**
> If you do not want to go through the confirmation process, check the **Add without confirmation** checkbox and the
> set will be added when you press the **Add** button.
diff --git a/docs/move-existing-database.md b/docs/move-existing-database.md
index a72c3e1..594dd75 100644
--- a/docs/move-existing-database.md
+++ b/docs/move-existing-database.md
@@ -2,7 +2,7 @@
If you are coming from the original version of BrickTracker and you wish to move your database from a bind mount to a volume, you can follow this procedure.
-> **Note**
+> **Note**
> If you already have a copy of your `app.db` file easily available, you can skip directly to "Move the database" section
## Update to version 1.0.0
@@ -57,7 +57,7 @@ This will download a copy of the database file to your computer.
Now that you have a copy of your database, you can tell the application its new path.
Edit the `BK_DATABASE_PATH` environment variable and redeploy your application.
-> **Note**
+> **Note**
> The name of the database file does not have to be `app.db`
For instance:
diff --git a/docs/set.md b/docs/set.md
index eba2183..aa2702f 100644
--- a/docs/set.md
+++ b/docs/set.md
@@ -1,6 +1,6 @@
# Managing your sets
-> **Note**
+> **Note**
> The following page is based on version `1.0.0` of BrickTracker.
## Set image
diff --git a/docs/setup.md b/docs/setup.md
index a058233..502502f 100644
--- a/docs/setup.md
+++ b/docs/setup.md
@@ -1,6 +1,6 @@
# Setup
-> **Note**
+> **Note**
> The following page is based on version `1.0.0` of BrickTracker.
## Prerequisites
@@ -34,7 +34,7 @@ services:
env_file: ".env"
```
-> **Warning**
+> **Warning**
> Do not use quotes (", ') around your environment variables.
> Docker will interpret them has being part of the **value** of the environment variable.
> For instance...