markdown Rules
2 rules found for markdown
Check for duplicates in Markdown
Check documentation for duplicate adjacent words, which are typically typos. Bad: ` prefix adds a prefix to the the column names which is useful for merging the result ` Good: ` prefix adds a prefix to the column names which is useful for merging the result `
markdown
Use code highlighting in Markdown
Specify the appropriate language for code blocks to enable proper syntax highlighting. For CLI commands use bash, and for Python code use py or python. Bad: `markdown transformers chat Qwen/Model-Name --torch_dtype auto ` Good: markdown `bash transformers chat Qwen/Model-Name --torch_dtype auto ` ` `
markdown