markdownlint: enable rule MD023

MD023 - Headers must start at the beginning of the line
Fixed all errors

Signed-off-by: Maciej Wawryk <maciejx.wawryk@intel.com>
Change-Id: Ie33dd5885386062253fa02ba4cc92f3cd1dcf7f3
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9041
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Reviewed-by: Paul Luse <paul.e.luse@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
wawryk 2021-08-02 12:56:27 +02:00 committed by Tomasz Zawadzki
parent 78d8ba2888
commit 11d907c100
2 changed files with 1 additions and 1 deletions

View File

@ -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 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 file. The environment can either be implemented wholesale in a single library or as a two-part
shim/implementation library system. shim/implementation library system.
~~~{.sh} ~~~{.sh}
# single library # single library
gcc -o my_app ./my_app.c -lspdk -lcustom_env_implementation gcc -o my_app ./my_app.c -lspdk -lcustom_env_implementation

View File

@ -3,7 +3,6 @@ exclude_rule 'MD003'
exclude_rule 'MD004' exclude_rule 'MD004'
exclude_rule 'MD010' exclude_rule 'MD010'
rule 'MD013', :line_length => 170 rule 'MD013', :line_length => 170
exclude_rule 'MD023'
exclude_rule 'MD024' exclude_rule 'MD024'
exclude_rule 'MD025' exclude_rule 'MD025'
exclude_rule 'MD026' exclude_rule 'MD026'