mirror of
https://github.com/mkdocs/mkdocs.git
synced 2026-03-27 09:58:31 +07:00
Present the sections in a logical manner: 1. File Layout (where to save documents) * Configure Navigation... 2. Writing with Markdown * Supported extensions... Added documentation for all included extensions. Also added some basic information about Markdown; pointing to the implementation and rules. Fixes #1385, fixes #316, and fixes #1172.
8 lines
270 B
Ruby
8 lines
270 B
Ruby
all # Use all markdownlint rules
|
|
|
|
# Disable line length check for tables and code blocks
|
|
rule 'MD013', :line_length => 80, :code_blocks => false, :tables => false
|
|
|
|
# Set Ordered list item prefix to "ordered" (use 1. 2. 3. not 1. 1. 1.)
|
|
rule 'MD029', :style => "ordered"
|