From efb683651bd8bccb4ff4de1361a517d352b89783 Mon Sep 17 00:00:00 2001 From: rxi Date: Sun, 13 Apr 2014 10:36:24 +0100 Subject: [PATCH] Changed lovebird.allowhtml's default to false; updated README --- README.md | 2 +- lovebird.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5024f93..4d65604 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ by default. ### lovebird.allowhtml Whether prints should allow HTML. If this is true then any HTML which is printed will be rendered as HTML; if it false then all HTML is rendered as -text. This is `true` by default. +text. This is `false` by default. ### lovebird.print(...) Prints its arguments to lovebird's console. If `lovebird.wrapprint` is set to diff --git a/lovebird.lua b/lovebird.lua index 2784599..a7ac4a0 100644 --- a/lovebird.lua +++ b/lovebird.lua @@ -19,7 +19,7 @@ lovebird.pages = {} lovebird.wrapprint = true lovebird.timestamp = true -lovebird.allowhtml = true +lovebird.allowhtml = false lovebird.port = 8000 lovebird.whitelist = { "127.0.0.1", "192.168.*.*" } lovebird.maxlines = 200