Guest User

Untitled

a guest
Oct 11th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ``` javascript
  2. var express = require('express')
  3. var Views = require('connect-views')
  4. var app = express()
  5.  
  6. app.use(Views({
  7. root: 'public',
  8. stylus: {
  9. paths: ['styles']
  10. },
  11. markdown: {
  12. dialect: 'maruku'
  13. }
  14. }))
  15. ```
Add Comment
Please, Sign In to add comment