From 2f55f396d89b7e320e17c95a6df6e3f2ac727757 Mon Sep 17 00:00:00 2001 From: Romain Bazile Date: Mon, 28 Sep 2020 21:34:37 +0200 Subject: [PATCH] Add admonition configuration --- docs/remote_access.md | 6 ++++-- mkdocs.yml | 5 +++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/remote_access.md b/docs/remote_access.md index e71f6f4..4708c31 100644 --- a/docs/remote_access.md +++ b/docs/remote_access.md @@ -81,7 +81,9 @@ To use the 5 GHz band, you can change the operations mode from hw_mode=g to hw_m - `g` = IEEE 802.11g (2.4 GHz) - `ad` = IEEE 802.11ad (60 GHz) (Not available on the Raspberry Pi) -WARNING: Make sure you **define the wished name (ssid)** of the futur generated Wifi and its **password (wpa_passphrase)**. +!!! warning + Make sure you **define the wished name (ssid)** of the future generated Wifi and its **password (wpa_passphrase)**. + Set up your hoastapd.conf as follow :: ``` @@ -160,6 +162,6 @@ If SSH is enabled on the Raspberry Pi access point, it should be possible to con ``` ssh pi@192.168.4.1 ``` -Most likely your password will be **raspberry**. +Most likely your password will be `raspberry`. By this point, the Raspberry Pi is acting as an access point, and other devices can associate with it. Associated devices can access the Raspberry Pi access point via its IP address for operations such as rsync, scp, or ssh. diff --git a/mkdocs.yml b/mkdocs.yml index 04dd70a..9581aee 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -3,14 +3,14 @@ nav: - Setup: - Basic Install: easy_install.md - Expert Setup: expert_setup.md - - Remote Access: remote_access.md + - Remote Access: remote_access.md - Usage: - Collection devices: collection_devices.md - Under the hood: - Software architecture: software_architecture.md - MQTT Messages: mqtt_messages.md - Contribute: - - Edit this doc: edit_this_doc.md + - Edit this documentation: edit_this_doc.md - Edit the code: edit_the_code.md - About: - License: license.md @@ -21,5 +21,6 @@ theme: markdown_extensions: - smarty - sane_lists + - admonition - toc: permalink: true