literal.js 517 B

1234567891011121314151617181920212223242526272829303132
  1. /*!
  2. * Jade - nodes - Literal
  3. * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca>
  4. * MIT Licensed
  5. */
  6. /**
  7. * Module dependencies.
  8. */
  9. var Node = require('./node');
  10. /**
  11. * Initialize a `Literal` node with the given `str.
  12. *
  13. * @param {String} str
  14. * @api public
  15. */
  16. var Literal = module.exports = function Literal(str) {
  17. this.str = str
  18. .replace(/\\/g, "\\\\")
  19. .replace(/\n|\r\n/g, "\\n")
  20. .replace(/'/g, "\\'");
  21. };
  22. /**
  23. * Inherit from `Node`.
  24. */
  25. Literal.prototype.__proto__ = Node.prototype;