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.

paragraph.js 308B

123456789101112
  1. module.exports = paragraph
  2. var phrasing = require('../util/container-phrasing')
  3. function paragraph(node, _, context) {
  4. var exit = context.enter('paragraph')
  5. var subexit = context.enter('phrasing')
  6. var value = phrasing(node, context, {before: '\n', after: '\n'})
  7. subexit()
  8. exit()
  9. return value
  10. }