From f1c6b4577462964257dece06fb65113d57bf3717 Mon Sep 17 00:00:00 2001 From: Maciej Wawryk Date: Tue, 24 Aug 2021 08:04:40 +0200 Subject: [PATCH] markdownlint: enable rule MD037 MD037 - Spaces inside emphasis markers Fixed all errors Signed-off-by: Maciej Wawryk Change-Id: Id5b880f9fc758f1bdd19f0fd8bd3f1dfd0678ecc Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9269 Reviewed-by: Tomasz Zawadzki Reviewed-by: Jim Harris Community-CI: Broadcom CI Tested-by: SPDK CI Jenkins --- doc/ftl.md | 4 ++-- mdl_rules.rb | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/ftl.md b/doc/ftl.md index 4bcb6efaa..95b2ae11d 100644 --- a/doc/ftl.md +++ b/doc/ftl.md @@ -199,8 +199,8 @@ $ /path/to/qemu [OTHER PARAMETERS] -drive format=raw,file=/path/to/data/file,if= In the above example, a device is created with 1 channel, 8 parallel units, 512 chunks per parallel unit, 24576 (`lnum_pln` * `lpgs_per_blk` * `lsecs_per_pg`) logical blocks in each chunk with logical -block being 4096B. Therefore the data file needs to be at least 384G (8 * 512 * 24576 * 4096B) of -size and can be created with the following command: +block being 4096B. Therefore the data file needs to be at least 384G `(8 * 512 * 24576 * 4096B)` +of size and can be created with the following command: ``` fallocate -l 384G /path/to/data/file diff --git a/mdl_rules.rb b/mdl_rules.rb index 2322332db..1946c0987 100644 --- a/mdl_rules.rb +++ b/mdl_rules.rb @@ -8,7 +8,6 @@ rule 'MD029', :style => "ordered" exclude_rule 'MD031' exclude_rule 'MD033' exclude_rule 'MD034' -exclude_rule 'MD037' exclude_rule 'MD038' exclude_rule 'MD040' exclude_rule 'MD041'