如何删除&#34; <pre>&#34; tags in Hubot httpd script?</pre>

时间:2014-07-30 14:30:38

标签: node.js hubot

默认情况下,hubot httpd.coffee脚本会在输出中放置一个pre标记。 反正有没有删除它? 我试图让hubot生成一些基本的html页面。

spawn = require('child_process').spawn
Fs   = require 'fs'

module.exports = (robot) ->
    robot.router.get "/", (req, res) ->
        res.end "Hi, i am a <b>robot</b>!"

网页中的输出必须如下: Hi, i am a robot

1 个答案:

答案 0 :(得分:0)

Hubot的HTTP服务器基于ExpressJS,因此我建议您阅读本指南:http://expressjs.com/guide.html

您可以尝试使用res.send

spawn = require('child_process').spawn
Fs   = require 'fs'

module.exports = (robot) ->
    robot.router.get "/", (req, res) ->
        res.send "Hi, i am a <b>robot</b>!"
        res.end()