py.js 230 B

123456789
  1. /**
  2. * Python
  3. */
  4. module.exports = {
  5. // find document blocks between """ and """
  6. docBlocksRegExp: /\"\"\"\uffff?(.+?)\uffff?(?:\s*)?\"\"\"/g,
  7. // remove not needed tabs at the beginning
  8. inlineRegExp: /^(\t*)?/gm
  9. };