diff --git a/docs/01-hardware.md b/docs/01-hardware.md index 2d1c283e..a20233d7 100644 --- a/docs/01-hardware.md +++ b/docs/01-hardware.md @@ -64,11 +64,9 @@ To use PWM dimming on the Lolin TFT 2.4" you must solder the TFT-LED pin to eith  -**Warning** Do *not* use D3 for backlight control because it is already in use for touch! -{: .notice--warning} +!> **Warning:**Do *not* use D3 for backlight control because it is already in use for touch! -**Note** It is also *not* recommended to use D4 for backlight control because it is already in use for PSram on the ESP32-Wrover. -{: .notice--info} +> **Note:**It is also *not* recommended to use D4 for backlight control because it is already in use for PSram on the ESP32-Wrover. ##### Compatible ESP boards @@ -146,7 +144,6 @@ The following boards are being tested: - Documentation can be found on [GitHub](https://github.com/mcauser/BLACK_F407ZG) -**Info** The STM32F4 boards do not have network connectivity. You can use a compatible network adapter and configure it in PlatformIO. -{: .notice--info} +> **Note:**The STM32F4 boards do not have network connectivity. You can use a compatible network adapter and configure it in PlatformIO. Images of STM32 boards are [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) from https://stm32-base.org/ \ No newline at end of file diff --git a/docs/02-installation.md b/docs/02-installation.md index 6137b3a9..0b47bd17 100644 --- a/docs/02-installation.md +++ b/docs/02-installation.md @@ -8,8 +8,7 @@ There are currently 2 download options, pick the one appropriate for your hardwa - hasp-lvgl-0.2.0-esp32_ili9341_spi.bin - hasp-lvgl-0.2.0-esp8266_ili9341_spi.bin + boot files -> If no precompiled firmware file is available for your board you can configure, compile and upload the firmware yourself using PlatformIO. -{: .notice--info} +> **Note:**If no precompiled firmware file is available for your board you can configure, compile and upload the firmware yourself using PlatformIO. ## Install the firmware @@ -56,8 +55,7 @@ Change `COM1` to the correct port on your computer and `4m` to the correct size ### STM32F407 devEbox -**Note** There is no precompiled firmware file available for STM32F4 boards. You will need to configure, compile and upload the firmware yourself using PlatformIO. -{: .notice--info} +> **Note:**There is no precompiled firmware file available for STM32F4 boards. You will need to configure, compile and upload the firmware yourself using PlatformIO. #### Using Serial diff --git a/docs/10-layouts.md b/docs/10-layouts.md index ebe4538c..abc84390 100644 --- a/docs/10-layouts.md +++ b/docs/10-layouts.md @@ -10,7 +10,7 @@ The base layout all other layouts inherit from. There's not much to this layout * page footer * scripts -**Note:** You won't ever assign this layout directly to a post or page. Instead all other layouts will build off of it by setting `layout: default` in their YAML Front Matter. +> **Note:**You won't ever assign this layout directly to a post or page. Instead all other layouts will build off of it by setting `layout: default` in their YAML Front Matter. {: .notice--warning} ### Layout based and user-defined classes @@ -70,7 +70,7 @@ This will generate the following in the `
` of your page: A Jekyll layout that compresses HTML in pure Liquid. To enable add `layout: compress` to `_layouts/default.html`. -**Note:** Has been known to mangle markup and break JavaScript... especially if inline `// comments` are present. For this reason it has been disabled by default. +> **Note:**Has been known to mangle markup and break JavaScript... especially if inline `// comments` are present. For this reason it has been disabled by default. {: .notice--danger} * [Documentation](http://jch.penibelst.de/) @@ -100,8 +100,8 @@ To expand the main content to the right, filling the space of what is normally o classes: wide ``` -**Note:** If the page contains a table of contents, it will no longer appear to the right. Instead it will be forced into the main content container directly following the page's title. -{: .notice--info} +> **Note:**If the page contains a table of contents, it will no longer appear to the right. Instead it will be forced into the main content container directly following the page's title. + ### Table of contents @@ -191,8 +191,8 @@ header: teaser: path-to-teaser-image.jpg ``` -**Note:** More information on using this `_include` can be found under [**Helpers**]({{ "/docs/helpers/" | relative_url }}). -{: .notice--info} +> **Note:**More information on using this `_include` can be found under [**Helpers**]({{ "/docs/helpers/" | relative_url }}). + ## Taxonomy archives @@ -211,8 +211,8 @@ If you're not using the `jekyll-archives` plugin then you need to create archive | [Tag Archive](https://mmistakes.github.io/minimal-mistakes/tags/markup/) | `layout: tag` | [markup.md](https://github.com/mmistakes/minimal-mistakes/blob/master/docs/_pages/markup.md) | | [Collection Archive](https://mmistakes.github.io/minimal-mistakes/recipes-archive/) | `layout: collection` | [recipes-archive.md](https://github.com/mmistakes/minimal-mistakes/blob/master/docs/_pages/recipes-archive.md) | -**Note:** By default, documents are shown in a list view. To change to a grid view add `entries_layout: grid` to the page's front matter. -{: .notice--info} +> **Note:**By default, documents are shown in a list view. To change to a grid view add `entries_layout: grid` to the page's front matter. + ### `layout: posts` @@ -319,8 +319,8 @@ Then adjust the `paginate_path` in **_config.yml** to match. paginate_path: /blog/page:num ``` -**Note:** Jekyll can only paginate a single `index.html` file. If you'd like to paginate more pages (e.g. category indexes) you'll need the help of a custom plugin. For more pagination related settings check the [**Configuration**]({{ "/docs/configuration/#paginate" | relative_url }}) section. -{: .notice--info} +> **Note:**Jekyll can only paginate a single `index.html` file. If you'd like to paginate more pages (e.g. category indexes) you'll need the help of a custom plugin. For more pagination related settings check the [**Configuration**]({{ "/docs/configuration/#paginate" | relative_url }}) section. + ## Splash page layout @@ -342,7 +342,7 @@ A page with a search form. Add `layout: search` to the YAML Front Matter similar  -**Note:** A page using the `layout: search` isn't compatible with the new [site search feature]({{ "/docs/configuration/#site-search" | relative_url }}) incorporated in the masthead. +> **Note:**A page using the `layout: search` isn't compatible with the new [site search feature]({{ "/docs/configuration/#site-search" | relative_url }}) incorporated in the masthead. {: .notice--warning} ### Exclusions @@ -354,7 +354,7 @@ search: false ``` **ProTip:** Add a link to this page in the masthead navigation. -{: .notice--info} + --- @@ -400,7 +400,7 @@ header: ``` **ProTip:** Captions written in Markdown are supported, so feel free to add links, or style text. Just be sure to wrap it in quotes. -{: .notice--info} + ### Header overlay @@ -498,7 +498,7 @@ header: ``` **ProTip:** `og_image` is useful for setting OpenGraph images on pages that don't have a header or overlay image. -{: .notice--info} + --- @@ -524,7 +524,7 @@ defaults: author_profile: true ``` -**Note:** To disable the author sidebar profile for a specific post or page, add `author_profile: false` to the YAML Front Matter instead. +> **Note:**To disable the author sidebar profile for a specific post or page, add `author_profile: false` to the YAML Front Matter instead. {: .notice--warning} To assign more author links, add to the `author.links` array in [`_config.yml`]({{ "/docs/configuration/" | relative_url }}) link so. Any of [Font Awesome's icons](https://fontawesome.com/icons?d=gallery) are available for use. @@ -550,8 +550,8 @@ author: url: "https://instagram.com/mmistakes" ``` -**Note:** Depending on the icon and theme skin used, colors may not be used. Popular social networks like Twitter, Facebook, Instagram, etc. have the appropriate brand color set in CSS. To change or add missing colors edit [`_utilities.scss`](https://github.com/mmistakes/minimal-mistakes/blob/master/_sass/minimal-mistakes/_utilities.scss) in `