From c00c6596230e572226b39ca922c6de02b4e7fb9f Mon Sep 17 00:00:00 2001 From: Erick Hitter <services@ethitter.com> Date: Fri, 13 Jan 2017 22:58:34 -0800 Subject: [PATCH] Remove unnecessary rules --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index dfda53b..099ee33 100644 --- a/index.js +++ b/index.js @@ -97,11 +97,11 @@ app.post('/post', function(req, res){ // Build forecast into a table var forecastData = JSON.parse( body ); - var forecastBody = "---\n#### **Forecast as of " + forecastData.forecast.txt_forecast.date + "**\n"; + var forecastBody = "**Forecast as of " + forecastData.forecast.txt_forecast.date + "**\n"; forecastBody += "| Day | Description | High | Low |\n"; forecastBody += "|:--------------------|:---------------------------------|:-------|:-------|\n"; forecastBody += "| Monday, Feb. 15 | Cloudy with a chance of flurries | 3 °C | -12 °C |\n"; - forecastBody += '---'; + // forecastBody += '---'; responseBody.attachments[1] = { "text": forecastBody }; res.send( responseBody ); -- GitLab