mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
819f333118
Make table of contents in the pages cleaner and more readable by dropping the main heading (H1 level) from TOCs. This was the original intention with the usage of "no_toc" kramdown magic, which was broken, however. The kramdown class magic needs to be specified on the line immediately following the headinds, otherwise it has no effect. We need to disable MD022 rule of mdlint as it does not understand this magic.
9 lines
382 B
Ruby
9 lines
382 B
Ruby
all
|
|
# Exclude MD022 - Headers should be surrounded by blank lines. The kramdown
|
|
# "class magic" (like {: .no_toc}) needs to be directly below the heading line.
|
|
exclude_rule 'MD022'
|
|
# Exclude MD041 - First line in file should be a top level header
|
|
exclude_rule 'MD041'
|
|
rule 'MD013', :tables => false
|
|
rule 'MD013', :code_blocks => false
|
|
rule 'MD024', :allow_different_nesting => true
|