diff --git a/.markdownlint.json b/.markdownlint.json index 314cfae..ed950cb 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -2,7 +2,8 @@ "default": true, "MD025": false, "MD013": false, - "MD033": { - "allowed_elements": ["center", "sub", "i"] - } + "MD033": { + "allowed_elements": ["center"] + } + } diff --git a/content/post/emacs_clang_libopencm3.md b/content/post/emacs_clang_libopencm3.md index a553e8b..1e24d5c 100644 --- a/content/post/emacs_clang_libopencm3.md +++ b/content/post/emacs_clang_libopencm3.md @@ -44,8 +44,10 @@ simply add the following to your `init.el`/`.emacs`[^1] file: (package-initialize) ``` -Emacs will need to be restarted or reloaded to load the package -repository. +{{< sub >}} +Emacs will need to be restarted or reloaded to load the package +repository. +{{< /sub >}} ### Packages @@ -54,7 +56,7 @@ Install the following packages in Emacs (`M-x package-install`): - `irony` - `company` - `company-irony` -- `company-irony-c-headers` (_Required if you want header auto-completion_) +- `company-irony-c-headers` _Required if you want header auto-completion_ # Configuration @@ -106,8 +108,10 @@ For an STM32F0 project, the context of the `.clang_complete` file would be: -DSTM32F0 ``` -The above assumes that `libopencm3` is also places within the project -directory +{{< sub >}} +The above assumes that `libopencm3` is also places within the project +directory +{{< /sub >}} {{< admonition warning Note >}} There is a strange issue that is encountered with non-working completion for new diff --git a/content/post/gpg_best_practices_and_git.md b/content/post/gpg_best_practices_and_git.md index 4a2ddb2..f1ff21b 100644 --- a/content/post/gpg_best_practices_and_git.md +++ b/content/post/gpg_best_practices_and_git.md @@ -29,7 +29,9 @@ sub rsa4096/A72FC2F1 2017-11-21 [E] [expires: 2020-02-23] sub rsa4096/875953A2 2019-02-23 [S] [expires: 2020-02-23] ``` -Note: _I am using git version `2.20.1` in the above example._ +{{< sub >}} +Note: I am using git version `2.20.1` in the above example. +{{< /sub >}} # Getting Started with OpenPGP diff --git a/content/post/hardened_linux.md b/content/post/hardened_linux.md index 3dd8794..e4b5713 100644 --- a/content/post/hardened_linux.md +++ b/content/post/hardened_linux.md @@ -27,8 +27,10 @@ On Arch Linux, it's as simple as: # pacman -S linux-hardened linux-hardened-headers ``` -Optionally (additionally) run `mkinitcpio -p linux-hardened` as root if -this wasn't already done automatically as part of the installation +{{< sub >}} +Optionally (additionally) run `mkinitcpio -p linux-hardened` as root if +this wasn't already done automatically as part of the installation +{{< /sub >}} The steps to boot to the hardened kernel will change based on your boot loader. Personally, I am using @@ -83,8 +85,10 @@ LABEL archhardened ... ``` -Note that the `APPEND` may differ from the example, same with `options` -for `systemd-boot` +{{< sub >}} +Note that the `APPEND` may differ from the example, same with `options` +for `systemd-boot` +{{< /sub >}} # Finish Line diff --git a/content/post/stm32-part0.md b/content/post/stm32-part0.md index 02c4139..7380305 100644 --- a/content/post/stm32-part0.md +++ b/content/post/stm32-part0.md @@ -175,9 +175,11 @@ to be along with the internal pull-up or pull-down resistor mode: | `GPIO_PUPD_PULLUP` | Internal pull-up resistor | | `GPIO_PUPD_PULLDOWN` | Internal pull-down resistor | -