Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 528B

1234567891011121314151617181920212223
  1. 'use strict'
  2. module.exports = stringify
  3. var toMarkdown = require('mdast-util-to-markdown')
  4. function stringify(options) {
  5. var self = this
  6. this.Compiler = compile
  7. function compile(tree) {
  8. return toMarkdown(
  9. tree,
  10. Object.assign({}, self.data('settings'), options, {
  11. // Note: this option is not in the readme.
  12. // The goal is for it to be set by plugins on `data` instead of being
  13. // passed by users.
  14. extensions: self.data('toMarkdownExtensions') || []
  15. })
  16. )
  17. }
  18. }