mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
Minor fix
This commit is contained in:
parent
9f85a746dc
commit
17cf51c1ca
5 changed files with 128 additions and 8 deletions
34
tools/obsidian/.markdownlint.jsonc
Normal file
34
tools/obsidian/.markdownlint.jsonc
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"ul-style": { // MD004
|
||||
"style": "dash" // -
|
||||
},
|
||||
"ul-indent": { // MD007
|
||||
"indent": 4
|
||||
},
|
||||
"no-hard-tabs": {
|
||||
"ignore_code_languages": [
|
||||
"go"
|
||||
]
|
||||
},
|
||||
"line-length": false, // MD013
|
||||
"no-missing-space-atx": false, // MD018, prevent from formatting `#tag` to `# tag`
|
||||
"no-inline-html": { // MD033
|
||||
"allowed_elements": [
|
||||
"kbd", // keyboard key
|
||||
"u", // underline
|
||||
"sup", // superscript
|
||||
"sub", // subscript
|
||||
"center", // center text
|
||||
"cursor", // Personal use
|
||||
"font", // Font family
|
||||
"iframe" // Embed Web content
|
||||
]
|
||||
},
|
||||
// "fenced-code-language": { // MD040
|
||||
// },
|
||||
"first-line-h1": false, // MD041
|
||||
"code-block-style": false // MD046: This will parse LaTeX indentation as indented code block
|
||||
// "code-block-style": {
|
||||
// "style": "fenced" // MD046
|
||||
// }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue