doc/.markdownlint.json
OniriCorpe 7a01793062
Improve markdown formatting of pages, a lot of them are improperly formatted (#2429)
* Revert "Revert "markdown format""

* fix formating

* fix readme

* add .markdownlint.json

* add markdownlint-rules-grav-pages

* add markdownlint-rules-grav-pages files

* add license for Markdown Lint Rules for Grav Pages

* fix [figure] mess

* fix [figure] mess 2

* fix [figure] mess 3

* maj .gitignore

* various fixes

* fix markdownlint-rules-grav-pages

* second formater pass

* various manual fixes

* add .markdownlintignore

* markdownlintignore: auto-generated pages

* disable proper-names for html_elements

* another bunch of various markdown fixes

* Update pages/02.administer/10.install/20.dns_config/dns_config.es.md

Co-authored-by: tituspijean <titus+yunohost@pijean.ovh>

---------

Co-authored-by: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com>
Co-authored-by: tituspijean <titus+yunohost@pijean.ovh>
2024-03-23 08:59:52 +01:00

64 lines
No EOL
1.3 KiB
JSON

{
"extends": "markdownlint-rules-grav-pages/rules/frontmatter.schema.json",
"default": true,
"code-block-style": {
"style": "fenced"
},
"code-fence-style": {
"style": "backtick"
},
"emphasis-style": {
"style": "asterisk"
},
"strong-style": {
"style": "asterisk"
},
"ul-style": {
"style": "dash"
},
"ul-indent": {
"indent": 2
},
"heading-style": {
"style": "atx"
},
"no-duplicate-heading": {
"siblings_only": true
},
"hr-style": {
"style": "---"
},
"ol-prefix": {
"style": "ordered"
},
"no-trailing-punctuation": {
"punctuation": ".,;:"
},
"no-inline-html": false,
"fenced-code-language": {
"allowed_languages": [
"bash",
"html",
"css",
"javascript",
"php",
"json",
"yaml",
"toml",
"markdown",
"text"
],
"language_only": true
},
"proper-names": {
"code_blocks": false,
"html_elements": false,
"names": [
"YunoHost",
"GitHub"
]
},
"line-length": false,
"no-reversed-links": false,
"no-missing-space-atx": false
}