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.

format-code-as-indented.js 409B

1234567891011121314
  1. module.exports = formatCodeAsIndented
  2. function formatCodeAsIndented(node, context) {
  3. return (
  4. !context.options.fences &&
  5. node.value &&
  6. // If there’s no info…
  7. !node.lang &&
  8. // And there’s a non-whitespace character…
  9. /[^ \r\n]/.test(node.value) &&
  10. // And the value doesn’t start or end in a blank…
  11. !/^[\t ]*(?:[\r\n]|$)|(?:^|[\r\n])[\t ]*$/.test(node.value)
  12. )
  13. }