From 11d907c100793adf01dc713d57b7956c86989c3d Mon Sep 17 00:00:00 2001 From: wawryk Date: Mon, 2 Aug 2021 12:56:27 +0200 Subject: [PATCH] markdownlint: enable rule MD023 MD023 - Headers must start at the beginning of the line Fixed all errors Signed-off-by: Maciej Wawryk Change-Id: Ie33dd5885386062253fa02ba4cc92f3cd1dcf7f3 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9041 Tested-by: SPDK CI Jenkins Community-CI: Broadcom CI Reviewed-by: Paul Luse Reviewed-by: Ben Walker Reviewed-by: Jim Harris --- doc/libraries.md | 1 + mdl_rules.rb | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/libraries.md b/doc/libraries.md index 6bee7d882..98d199f7e 100644 --- a/doc/libraries.md +++ b/doc/libraries.md @@ -184,6 +184,7 @@ modifications to the spdk source directly. Any environment can replace the `spdk_env_dpdk` environment by implementing the `include/env.h` header file. The environment can either be implemented wholesale in a single library or as a two-part shim/implementation library system. + ~~~{.sh} # single library gcc -o my_app ./my_app.c -lspdk -lcustom_env_implementation diff --git a/mdl_rules.rb b/mdl_rules.rb index e0089468f..4398b1b44 100644 --- a/mdl_rules.rb +++ b/mdl_rules.rb @@ -3,7 +3,6 @@ exclude_rule 'MD003' exclude_rule 'MD004' exclude_rule 'MD010' rule 'MD013', :line_length => 170 -exclude_rule 'MD023' exclude_rule 'MD024' exclude_rule 'MD025' exclude_rule 'MD026'