Markdown header fixes

This commit is contained in:
Paul-Vincent Roll 2017-06-11 23:44:43 +02:00 committed by GitHub
parent ca92a0af5c
commit 9f822c0991

View File

@ -78,7 +78,7 @@ The data object contains additional metadata about the module instance:
#### `defaults: {}` #### `defaults: {}`
Any properties defined in the defaults object, will be merged with the module config as defined in the user's config.js file. This is the best place to set your modules's configuration defaults. Any of the module configuration properties can be accessed using `this.config.propertyName`, but more about that later. Any properties defined in the defaults object, will be merged with the module config as defined in the user's config.js file. This is the best place to set your modules's configuration defaults. Any of the module configuration properties can be accessed using `this.config.propertyName`, but more about that later.
####'requiresVersion:' #### `requiresVersion:`
*Introduced in version: 2.1.0.* *Introduced in version: 2.1.0.*
@ -527,7 +527,7 @@ this.expressApp.use("/" + this.name, express.static(this.path + "/public"));
This is a link to the IO instance. It will allow you to do some Socket.IO magic. In most cases you won't need this, since the Node Helper has a few convenience methods to make this simple. This is a link to the IO instance. It will allow you to do some Socket.IO magic. In most cases you won't need this, since the Node Helper has a few convenience methods to make this simple.
####'requiresVersion:' #### `requiresVersion:`
*Introduced in version: 2.1.0.* *Introduced in version: 2.1.0.*
A string that defines the minimum version of the MagicMirror framework. If it is set, the system compares the required version with the users version. If the version of the user is out of date, it won't run the module. A string that defines the minimum version of the MagicMirror framework. If it is set, the system compares the required version with the users version. If the version of the user is out of date, it won't run the module.