mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
62 lines
941 B
Markdown
62 lines
941 B
Markdown
# Proper Names of Projects (code_blocks:false)
|
|
|
|
The site GitHub
|
|
|
|
Not github {MD044}
|
|
|
|
Link to [GitHub](https://github.com/)
|
|
|
|
Link to [github.com](https://github.com/)
|
|
|
|
Link to [github.com](https://github.com/about)
|
|
|
|
Link to [github.com/about](https://github.com/about)
|
|
|
|
The domain name of GitHub is github.com
|
|
|
|
The project Vue
|
|
|
|
AKA Vue.js
|
|
|
|
Not vue {MD044}
|
|
|
|
Or vue.js {MD044}
|
|
|
|
The file `vue.js` (code block)
|
|
|
|
The library Vuex
|
|
|
|
Not vuex {MD044}
|
|
|
|
The library vue-router
|
|
|
|
Not Vue-router {MD044}
|
|
|
|
But vue-router-extra is different
|
|
|
|
As is extra-vue-router
|
|
|
|
Quoted "Vue" and "vue-router"
|
|
|
|
Emphasized *Vue* and *vue-router*
|
|
|
|
Underscored _Vue_ and _vue-router_ {MD049}
|
|
|
|
Call it npm
|
|
But not Npm {MD044}
|
|
Or NPM {MD044}
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"proper-names": {
|
|
"names": [
|
|
"github.com/about",
|
|
"github.com",
|
|
"vue-router",
|
|
"GitHub",
|
|
"Vuex",
|
|
"npm",
|
|
"Vue"
|
|
],
|
|
"code_blocks": false
|
|
}
|
|
} -->
|